floating movement type now stops slips (#67694)

* float movement type now stops slips

* weh
This commit is contained in:
Fikou
2022-06-12 18:47:51 +02:00
committed by GitHub
parent d82e4adaab
commit 5be8bde77f
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -76,7 +76,7 @@
if(!isliving(arrived))
return
var/mob/living/victim = arrived
if(!(victim.movement_type & FLYING) && victim.slip(knockdown_time, parent, lube_flags, paralyze_time, force_drop_items) && callback)
if(!(victim.movement_type & FLYING|FLOATING) && victim.slip(knockdown_time, parent, lube_flags, paralyze_time, force_drop_items) && callback)
callback.Invoke(victim)
/*