Merge pull request #6709 from VOREStation/aro-mistake

Fix way too many vorestation edits
This commit is contained in:
Novacat
2020-03-05 19:03:58 -05:00
committed by GitHub
31 changed files with 87 additions and 228 deletions

View File

@@ -29,6 +29,10 @@
to_chat(src, "<span class='notice'>There is nothing of interest in this direction.</span>")
return 0
if(is_incorporeal())
forceMove(destination)
return 1
if(!start.CanZPass(src, direction))
to_chat(src, "<span class='warning'>\The [start] is in the way.</span>")
return 0
@@ -273,6 +277,8 @@
return FALSE
/mob/living/can_fall()
if(is_incorporeal())
return FALSE
if(hovering)
return FALSE
return ..()