From d701e5791f6526e75aa45650f0c500326ccdf5bb Mon Sep 17 00:00:00 2001 From: Anonmare Date: Tue, 31 Dec 2024 23:10:02 +0000 Subject: [PATCH] EGO too strong for cleanbots no longer forces the user to drop it --- code/modules/mob/living/simple_animal/bot/cleanbot.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/bot/cleanbot.dm b/code/modules/mob/living/simple_animal/bot/cleanbot.dm index 8c375caaf748..7f6c1ae471d1 100644 --- a/code/modules/mob/living/simple_animal/bot/cleanbot.dm +++ b/code/modules/mob/living/simple_animal/bot/cleanbot.dm @@ -198,9 +198,7 @@ if(istype(W, /obj/item/ego_weapon)) var/obj/item/ego_weapon/EW = W if(!EW.CanUseEgo(src)) - to_chat(user, span_notice("You try attaching \the [W] to \the [src]... but it falls off!")) - user.dropItemToGround(EW) - EW.forceMove(get_turf(src)) + to_chat(user, span_notice("You try attaching \the [W] to \the [src]... but it refuses to stay on!")) return FALSE to_chat(user, span_notice("You start attaching \the [W] to \the [src]...")) if(do_after(user, 25, target = src))