From e4dc2683e3809bf84a8fa43f06aebf971ef73243 Mon Sep 17 00:00:00 2001 From: SatinIsle Date: Wed, 21 Aug 2024 14:22:56 +0100 Subject: [PATCH] Fix for bait toy Fixed the monster bait toy so that it can only be used on mobs immediately next to you, preventing them from telekinetically shoving you over. --- 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 98629ba086c..e492f3e178a 100644 --- a/code/game/objects/items/toys/toys_vr.dm +++ b/code/game/objects/items/toys/toys_vr.dm @@ -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, "You need to stand right next to \the [M] to bait it.") + return if(!istype(M)) return if(!M.vore_active)