mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 11:37:40 +01:00
Crashing into stuff while leaping will actually work now. (#25545)
This commit is contained in:
@@ -562,11 +562,13 @@
|
||||
for(var/atom/movable/hit_thing in turf_to_check)
|
||||
if(isliving(hit_thing))
|
||||
var/mob/living/hit_mob = hit_thing
|
||||
return hit_mob.density
|
||||
if(hit_mob.density)
|
||||
return hit_mob
|
||||
|
||||
if(isobj(hit_thing))
|
||||
var/obj/hit_obj = hit_thing
|
||||
return hit_obj.density
|
||||
if(hit_obj.density)
|
||||
return hit_obj
|
||||
|
||||
return FALSE
|
||||
|
||||
|
||||
Reference in New Issue
Block a user