From f9b8c01c65ed43ef0633947e1767bc058e3fd5d9 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Mon, 6 Jan 2014 00:13:49 +1030 Subject: [PATCH] Implemented IS_SLOW. --- code/modules/mob/living/carbon/human/human_movement.dm | 3 +++ code/setup.dm | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index bab4ae72ea3..37f1e9418b2 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -1,6 +1,9 @@ /mob/living/carbon/human/movement_delay() var/tally = 0 + if(species && species & IS_SLOW) + tally = 10 + if (istype(loc, /turf/space)) return -1 // It's hard to be slowed down in space by... anything handle_embedded_objects() //Moving with objects stuck in you can cause bad times. diff --git a/code/setup.dm b/code/setup.dm index 6b2ba7221d8..ef88ae31595 100644 --- a/code/setup.dm +++ b/code/setup.dm @@ -760,7 +760,6 @@ var/list/RESTRICTED_CAMERA_NETWORKS = list( //Those networks can only be accesse #define FEET_PADDED 2 #define FEET_NOSLIP 4 - //Language flags. #define WHITELISTED 1 // Language is available if the speaker is whitelisted. #define RESTRICTED 2 // Language can only be accquired by spawning or an admin.