Resolved many Rubocop warnings

This commit is contained in:
Maruno17
2020-09-06 17:31:12 +01:00
parent 6c4670eaa3
commit 681a8331ab
137 changed files with 921 additions and 1200 deletions

View File

@@ -22,7 +22,7 @@ class Game_Character
attr_accessor :transparent
attr_reader :move_speed
attr_accessor :walk_anime
attr_accessor :bob_height
attr_writer :bob_height
def initialize(map=nil)
@map = map
@@ -415,7 +415,7 @@ class Game_Character
when 42; @opacity = command.parameters[0]
when 43; @blend_type = command.parameters[0]
when 44; pbSEPlay(command.parameters[0])
when 45; result = eval(command.parameters[0])
when 45; eval(command.parameters[0])
end
@move_route_index += 1
end