From 0dfd427ee46e6150fb8e13ce9cec7e45bd80dc60 Mon Sep 17 00:00:00 2001 From: Oblisk234 <61151679+Oblisk234@users.noreply.github.com> Date: Sun, 8 Dec 2024 05:17:18 +0000 Subject: [PATCH] [s] Fixes cursed stomach vomitcrawl CC exploit (#22828) * Who knew vomit could be useful * Revert "Who knew vomit could be useful" This reverts commit c875342e76d9484f16372eed70ead60480f7c5d5. * Vomitcrawling prevention * Mapping helpers --- yogstation/code/datums/components/crawl.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yogstation/code/datums/components/crawl.dm b/yogstation/code/datums/components/crawl.dm index afd1e1ea028c..a47c86295d95 100644 --- a/yogstation/code/datums/components/crawl.dm +++ b/yogstation/code/datums/components/crawl.dm @@ -447,5 +447,5 @@ GLOBAL_LIST_EMPTY(vomit_spots) /obj/effect/dummy/crawling/vomit/proc/follow_vomit() var/turf/T = get_turf(currentvomit) - if(T) + if(T && !(is_centcom_level(T.z)||is_reserved_level(T.z))) forceMove(T)