From 4cc51c4ff11982f386ac6dce7d3b6727f90fa3bb Mon Sep 17 00:00:00 2001 From: Cameron Lennox Date: Tue, 14 Oct 2025 18:35:38 -0400 Subject: [PATCH] Slight adjust to this (#18630) If we're not on a turf (slipped into something like a machine) stop slipping. --- code/datums/components/turfslip.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/turfslip.dm b/code/datums/components/turfslip.dm index 76f6a4e7b27..fff67336c8c 100644 --- a/code/datums/components/turfslip.dm +++ b/code/datums/components/turfslip.dm @@ -45,7 +45,7 @@ SIGNAL_HANDLER // Can the mob slip? - if(QDELETED(owner) || isbelly(owner.loc)) + if(QDELETED(owner) || !isturf(owner.loc)) qdel(src) return