make eggs activate target

This commit is contained in:
AFCMS 2022-02-26 22:12:26 +01:00
parent 540b72f1d6
commit c6f72c473f
Signed by untrusted user: AFCMS
GPG Key ID: 8720389A25B652E3
1 changed files with 3 additions and 0 deletions

View File

@ -177,6 +177,9 @@ local function egg_on_step(self, dtime)
end
minetest.sound_play("mcl_throwing_egg_impact", { pos = self.object:get_pos(), max_hear_distance=10, gain=0.5 }, true)
self.object:remove()
if mod_target and node.name == "mcl_target:target_off" then
mcl_target.hit(vector.round(pos), 0.4) --4 redstone ticks
end
return
end
end