From 5c7e8cc3a00bc5fda145b3501ba2a5a89c511d34 Mon Sep 17 00:00:00 2001 From: Pidgey <35320204+PidgeyThePirate@users.noreply.github.com> Date: Wed, 21 Apr 2021 01:44:02 +1000 Subject: [PATCH] forgot to remove some unused defs --- code/modules/mob/mob.dm | 8 -------- 1 file changed, 8 deletions(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 41d0d9aa8af..8eb59b8ad5a 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -1343,10 +1343,6 @@ GLOBAL_LIST_INIT(slot_equipment_priority, list( \ /mob/proc/can_resist() return FALSE //overridden in living.dm -#define SPIN_DIRECTION_CLOCKWISE 0 -#define SPIN_DIRECTION_COUNTERCLOCKWISE 1 -#define SPIN_DIRECTION_RANDOM 2 - /mob/proc/spin(spintime, speed) set waitfor = 0 if(!spintime || !speed || spintime > 100) @@ -1360,10 +1356,6 @@ GLOBAL_LIST_INIT(slot_equipment_priority, list( \ else dir = turn(dir, -90) -#undef SPIN_DIRECTION_CLOCKWISE -#undef SPIN_DIRECTION_COUNTERCLOCKWISE -#undef SPIN_DIRECTION_RANDOM - /mob/proc/is_literate() return FALSE