From f2fa355ec0d68889774bfcdc614c646556f77cb4 Mon Sep 17 00:00:00 2001 From: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Date: Thu, 9 Apr 2026 18:37:55 -0400 Subject: [PATCH] Nerfs Spacecrawl (#31825) * Nerfs Spacecrawl * Update code/modules/antagonists/heretic/magic/space_crawl.dm Co-authored-by: iramoye Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> --------- Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Co-authored-by: iramoye --- code/modules/antagonists/heretic/magic/space_crawl.dm | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/code/modules/antagonists/heretic/magic/space_crawl.dm b/code/modules/antagonists/heretic/magic/space_crawl.dm index 690ee8a334b..82390ac3b80 100644 --- a/code/modules/antagonists/heretic/magic/space_crawl.dm +++ b/code/modules/antagonists/heretic/magic/space_crawl.dm @@ -7,10 +7,8 @@ */ /datum/spell/bloodcrawl/space_crawl name = "Space Phase" - desc = "Allows you to phase in and out of existence while in space or glass tiles." - - - + desc = "Allows you to phase in and out of existence while in space." + base_cooldown = 1 MINUTES action_background_icon = 'icons/mob/actions/actions_ecult.dmi' action_background_icon_state = "bg_heretic" action_icon_state = "space_crawl" @@ -23,9 +21,7 @@ /datum/spell/bloodcrawl/space_crawl/valid_target(turf/target, user) if(isspaceturf(get_turf(user))) //qwertodo: make this work on basalt / asteroid turf, if we get a planet map return TRUE - if(istype(get_turf(user), /turf/simulated/floor/transparent)) - return TRUE - to_chat(user, SPAN_WARNING("You must stand on a space or glass turf!")) + to_chat(user, SPAN_WARNING("You must stand in space!")) return FALSE /datum/spell/bloodcrawl/space_crawl/rise_message(atom/A)