Update movement.dm

This commit is contained in:
Novacat
2020-08-28 12:58:04 -04:00
committed by GitHub
parent f2f5ba7a9e
commit 9ac3f02519

View File

@@ -81,10 +81,6 @@
to_chat(src, "<span class='warning'>You gave up on pulling yourself up.</span>")
return 0
else
to_chat(src, "<span class='warning'>Gravity stops you from moving upward.</span>")
return 0
<<<<<<< HEAD
else if(ismob(src)) //VOREStation Edit Start. Are they a mob, and are they currently flying??
var/mob/H = src
if(H.flying)
@@ -104,11 +100,10 @@
else
to_chat(src, "<span class='warning'>Gravity stops you from moving upward.</span>")
return 0 //VOREStation Edit End.
else
to_chat(src, "<span class='warning'>Gravity stops you from moving upward.</span>")
return 0
=======
>>>>>>> 8dc9ba1... Ladders respect Move Up/Down paradigm (#7559)
for(var/atom/A in destination)
if(!A.CanPass(src, start, 1.5, 0))