1
0
mirror of https://codeberg.org/tenplus1/mobs_redo.git synced 2025-04-19 03:50:24 +02:00
mobs_redo/compatibility.lua

9 lines
205 B
Lua

-- called after mob registration to check for older settings
function mobs.compatibility_check(self)
-- simple mobs rotation setting
if self.drawtype == "side" then self.rotate = math.rad(90) end
end