diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index 3424bdb562..526cde38f4 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 66293c1b5c..37b99246f9 100644 --- a/code/setup.dm +++ b/code/setup.dm @@ -740,7 +740,6 @@ var/list/RESTRICTED_CAMERA_NETWORKS = list( //Those networks can only be accesse #define RAD_ABSORB 2048 #define REQUIRE_LIGHT 4096 - //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.