Use a bullet symbol for Overlay spacer

This commit is contained in:
2020-05-03 09:55:26 -05:00
parent c53d42166b
commit bb21de2e2a
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ class IMICFPS
@text.text = ""
@slots.each_with_index do |slot, i|
@text.text += "#{slot.value} <c=ff000000>|</c> " unless i == @slots.size - 1
@text.text += "#{slot.value} <c=ff000000></c> " unless i == @slots.size - 1
@text.text += "#{slot.value}" if i == @slots.size - 1
end
end

View File

@@ -5,7 +5,7 @@ class IMICFPS
attr_reader :map
def setup
# TODO: Move everything required for a playable game map
# in a Scene or Scene3D container object
# in to a Scene or Scene3D container object
# and refactor Game to use it.
Publisher.new
@map = Map.new( map_parser: @options[:map_parser] )