yeah no I'm fixing floating in another pr, fuck this

This commit is contained in:
Dip
2020-11-10 18:03:02 -03:00
parent 8d914d0b21
commit 3fe84d7fa6
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -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)
+1 -1
View File
@@ -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