From 3fe84d7fa6c662e21e46c398040c8de22cc04133 Mon Sep 17 00:00:00 2001 From: Dip Date: Tue, 10 Nov 2020 18:03:02 -0300 Subject: [PATCH] yeah no I'm fixing floating in another pr, fuck this --- code/__DEFINES/flags.dm | 1 - code/modules/surgery/bodyparts/helpers.dm | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/code/__DEFINES/flags.dm b/code/__DEFINES/flags.dm index bfea4412..84a359f6 100644 --- a/code/__DEFINES/flags.dm +++ b/code/__DEFINES/flags.dm @@ -60,7 +60,6 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204 #define GROUND (1<<0) #define FLYING (1<<1) #define VENTCRAWLING (1<<2) -#define FLOATING (1<<3) //Fire and Acid stuff, for resistance_flags #define LAVA_PROOF (1<<0) diff --git a/code/modules/surgery/bodyparts/helpers.dm b/code/modules/surgery/bodyparts/helpers.dm index 91cf3474..35043c8a 100644 --- a/code/modules/surgery/bodyparts/helpers.dm +++ b/code/modules/surgery/bodyparts/helpers.dm @@ -111,7 +111,7 @@ return FALSE /mob/living/carbon/get_leg_ignore() - if(movement_type & (FLYING|FLOATING)) + if(movement_type & (FLYING|floating)) return TRUE return FALSE