diff options
| -rw-r--r-- | api.lua | 3 | ||||
| -rw-r--r-- | mount.lua | 1 | 
2 files changed, 3 insertions, 1 deletions
| @@ -1,5 +1,5 @@ --- Mobs Api (21st January 2017) +-- Mobs Api (23rd January 2017)  mobs = {}  mobs.mod = "redo" @@ -422,6 +422,7 @@ function check_for_death(self)  	-- drop items when dead  	local obj  	local pos = self.object:getpos() +	self.drops = self.drops or {} -- error check  	for n = 1, #self.drops do @@ -148,6 +148,7 @@ end  function mobs.detach(player, offset)  	force_detach(player) +  	default.player_set_animation(player, "stand" , 30)  	local pos = player:getpos() | 
