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,4 +1,5 @@
# frozen_string_literal: true
class IMICFPS
class HUD
class AmmoWidget < HUD::Widget
@@ -18,7 +19,7 @@ class IMICFPS
def update
if (Gosu.milliseconds / 1000.0) % 1.0 >= 0.9
random = "#{rand(0..199)}".rjust(3, "0")
random = rand(0..199).to_s.rjust(3, "0")
@text.text = "#{random}/999"
end
@@ -27,4 +28,4 @@ class IMICFPS
end
end
end
end
end