diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-05-01 19:41:08 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-05-01 19:41:08 +0100 |
commit | deaada8a8b75f484eba60eb1b384034a2d95a571 (patch) | |
tree | 6e2ed8f652fa846029e50cf5be32f760fefb0930 /rat.lua | |
parent | dc72770307d05d5858ebd4811cb828502cf005d5 (diff) |
tweaked on_blast example
Diffstat (limited to 'rat.lua')
-rw-r--r-- | rat.lua | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -34,13 +34,15 @@ mobs:register_mob("mobs_animal:rat", { local pos = self.object:getpos() print("rat pos", pos.x, pos.y, pos.z) end, - +]] +--[[ on_blast = function(obj, damage) print ("--- damage is", damage) + print ("--- mob is", obj.object:get_luaentity().name) -- return's do_damage, do_knockback and drops - return true, true, {"default:mese"} + return false, true, {"default:mese"} end, ---]] +]] }) mobs:register_spawn("mobs_animal:rat", {"default:stone"}, 20, 5, 15000, 2, 0) |