mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
POLARIS: Prevent ghosts from ejecting borgs from rechargers
This commit is contained in:
@@ -289,7 +289,7 @@
|
||||
set name = "Eject Recharger"
|
||||
set src in oview(1)
|
||||
|
||||
if(usr.incapacitated())
|
||||
if(usr.incapacitated() || !isliving(usr))
|
||||
return
|
||||
|
||||
go_out()
|
||||
@@ -301,8 +301,9 @@
|
||||
set name = "Enter Recharger"
|
||||
set src in oview(1)
|
||||
|
||||
if(!usr.incapacitated())
|
||||
if(usr.incapacitated() || !isliving(usr))
|
||||
return
|
||||
|
||||
go_in(usr)
|
||||
|
||||
/obj/machinery/recharge_station/ghost_pod_recharger
|
||||
|
||||
Reference in New Issue
Block a user