forked from mtcontrib/mobs_redo
9 lines
205 B
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
|