Merge pull request #16203 from SatinIsle/Fix-bait

Fix for bait toy
This commit is contained in:
Novacat
2024-08-21 18:24:03 -04:00
committed by GitHub
+3
View File
@@ -1163,6 +1163,9 @@
/obj/item/weapon/toy/monster_bait/afterattack(var/atom/A, var/mob/user)
var/mob/living/simple_mob/M = A
if(M.z != user.z || get_dist(user,M) > 1)
to_chat(user, "<span class='notice'>You need to stand right next to \the [M] to bait it.</span>")
return
if(!istype(M))
return
if(!M.vore_active)