From 1bad99aa5e1ab7f980b511b999059ff2a9fe7a58 Mon Sep 17 00:00:00 2001 From: Vi3trice <80771500+Vi3trice@users.noreply.github.com> Date: Mon, 9 Oct 2023 15:43:29 -0400 Subject: [PATCH] Naughty unbuckling (#22725) --- code/modules/mining/fulton.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mining/fulton.dm b/code/modules/mining/fulton.dm index 68b6bdc7948..d4eee00156d 100644 --- a/code/modules/mining/fulton.dm +++ b/code/modules/mining/fulton.dm @@ -74,7 +74,7 @@ GLOBAL_LIST_EMPTY(total_extraction_beacons) if(isliving(A)) var/mob/living/M = A M.Weaken(32 SECONDS) // Keep them from moving during the duration of the extraction - M.buckled = 0 // Unbuckle them to prevent anchoring problems + unbuckle_mob(M, force = TRUE) // Unbuckle them to prevent anchoring problems else A.anchored = TRUE A.density = FALSE