Skip to content

Commit

Permalink
fixup! Avoid luacheck warnings for empty if branch
Browse files Browse the repository at this point in the history
  • Loading branch information
tobylane committed May 6, 2022
1 parent 596a2f8 commit 079d702
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CorsixTH/Lua/world.lua
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ function World:tickEarthquake()
--[[
local hospital = self:getLocalPlayerHospital()
loop through the patients and allow the possibility for them to fall over
-- loop through the patients and allow the possibility for them to fall over
for _, patient in ipairs(hospital.patients) do
if not patient.in_room and patient.falling_anim then
Expand All @@ -665,10 +665,10 @@ function World:tickEarthquake()
-- they visit reception. Some debugging needed here to get
-- this working.
-- patient:falling()
patient:falling()
end
end
]]
--]]
end
end
Expand Down

0 comments on commit 079d702

Please sign in to comment.