From d2da9e571e878c0ed57a076016ca9fab4a1ded4e Mon Sep 17 00:00:00 2001 From: shellspeed1 <46614774+shellspeed1@users.noreply.github.com> Date: Sat, 26 Oct 2019 12:44:54 -0700 Subject: [PATCH] borgs should be able to unbuckle people now. --- code/game/machinery/stasis.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/game/machinery/stasis.dm b/code/game/machinery/stasis.dm index f24b2f4f..720e3e61 100644 --- a/code/game/machinery/stasis.dm +++ b/code/game/machinery/stasis.dm @@ -134,4 +134,9 @@ /obj/machinery/stasis/crowbar_act(mob/living/user, obj/item/I) return default_deconstruction_crowbar(I) +/obj/machinery/stasis/attack_robot(mob/user) + if(Adjacent(user) && occupant) + unbuckle_mob(occupant) + else + ..() #undef STASIS_TOGGLE_COOLDOWN \ No newline at end of file