mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-08-22 19:46:36 +01:00
Merge pull request #3208 from VOREStation/aro-rechgr
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