From 3977bad5a99ec059b0ec60cee4e718b7ab43040b Mon Sep 17 00:00:00 2001 From: CHOMPStation2 <58959929+CHOMPStation2@users.noreply.github.com> Date: Thu, 22 Aug 2024 03:42:48 -0700 Subject: [PATCH] [MIRROR] Fix for bait toy (#8811) Co-authored-by: Novacat <35587478+Novacat@users.noreply.github.com> Co-authored-by: CHOMPStation2 --- code/game/objects/items/toys/toys_vr.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/objects/items/toys/toys_vr.dm b/code/game/objects/items/toys/toys_vr.dm index 37f8f04350..14c66637e6 100644 --- a/code/game/objects/items/toys/toys_vr.dm +++ b/code/game/objects/items/toys/toys_vr.dm @@ -1170,6 +1170,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, "You need to stand right next to \the [M] to bait it.") + return if(!istype(M)) return if(!M.vore_active)