tidy comments, change float var

This commit is contained in:
tenplus1
2025-04-05 12:09:03 +01:00
parent 854834f04e
commit 027620bfa3
3 changed files with 204 additions and 298 deletions

View File

@ -5,4 +5,8 @@ function mobs.compatibility_check(self)
-- simple mobs rotation setting
if self.drawtype == "side" then self.rotate = math.rad(90) end
-- replace floats var from number to bool
if self.floats == 1 then self.floats = true
elseif self.floats == 0 then self.floats = false end
end