mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Fix missing incorporeal floatyness
This commit is contained in:
@@ -128,7 +128,7 @@
|
|||||||
/mob/living/can_ztravel()
|
/mob/living/can_ztravel()
|
||||||
if(incapacitated())
|
if(incapacitated())
|
||||||
return FALSE
|
return FALSE
|
||||||
return hovering
|
return (hovering || is_incorporeal())
|
||||||
|
|
||||||
/mob/living/carbon/human/can_ztravel()
|
/mob/living/carbon/human/can_ztravel()
|
||||||
if(incapacitated())
|
if(incapacitated())
|
||||||
@@ -588,4 +588,4 @@
|
|||||||
// And hurt the floor.
|
// And hurt the floor.
|
||||||
if(istype(hit_atom, /turf/simulated/floor))
|
if(istype(hit_atom, /turf/simulated/floor))
|
||||||
var/turf/simulated/floor/ground = hit_atom
|
var/turf/simulated/floor/ground = hit_atom
|
||||||
ground.break_tile()
|
ground.break_tile()
|
||||||
|
|||||||
Reference in New Issue
Block a user