Use fonts everywhere, misc. tweaks

This commit is contained in:
2020-07-18 21:33:33 -05:00
parent ce90284001
commit 4ee97cca4b
11 changed files with 55 additions and 37 deletions

View File

@@ -58,10 +58,12 @@ eos
InputMapper.keys.each do |key, pressed|
next unless pressed
action = InputMapper.action(key)
next unless action
actions = InputMapper.action(key)
next unless actions
@player.send(action) if @player.respond_to?(action)
actions.each do |action|
@player.send(action) if @player.respond_to?(action)
end
end
end