Ran rubocop autocorrect

This commit is contained in:
2020-12-02 17:37:48 -06:00
parent aa30ff73d0
commit 95bea199ed
116 changed files with 758 additions and 575 deletions

View File

@@ -1,9 +1,10 @@
# frozen_string_literal: true
class IMICFPS
class SoundEffect
class FadeInAndOut < FadeIn
def setup
@hang_time = @options[:hang_time] ? @options[:hang_time] : 0.0
@hang_time = @options[:hang_time] || 0.0
super
end
@@ -20,4 +21,4 @@ class IMICFPS
end
end
end
end
end