mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-12 07:35:31 +01:00
Fixes #5434
This commit is contained in:
@@ -47,7 +47,10 @@
|
||||
if (!can_touch(user) || !climbable)
|
||||
return
|
||||
|
||||
usr.visible_message("<span class='warning'>[user] starts climbing onto \the [src]!</span>")
|
||||
if(locate(/obj/machinery/door/poddoor/shutters) in src.contents) return
|
||||
|
||||
var/obj/machinery/door/poddoor/shutters/S = locate() in src.contents
|
||||
if(S && S.density) return
|
||||
|
||||
if(!do_after(user,50))
|
||||
return
|
||||
@@ -55,6 +58,9 @@
|
||||
if (!can_touch(user) || !climbable)
|
||||
return
|
||||
|
||||
var/obj/machinery/door/poddoor/shutters/S = locate() in src.contents
|
||||
if(S && S.density) return
|
||||
|
||||
usr.loc = get_turf(src)
|
||||
if (get_turf(user) == get_turf(src))
|
||||
usr.visible_message("<span class='warning'>[user] climbs onto \the [src]!</span>")
|
||||
|
||||
Reference in New Issue
Block a user