mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 13:38:41 +01:00
Replaced last occurences of gc_destroyed by qdeleted().
This commit is contained in:
@@ -161,7 +161,7 @@
|
||||
A.unbolt()
|
||||
spawn()
|
||||
if(A && A.close())
|
||||
if(stat & NOPOWER || lostPower || !A || A.gc_destroyed)
|
||||
if(stat & NOPOWER || lostPower || !A || qdeleted(A))
|
||||
goIdle(1)
|
||||
return
|
||||
A.bolt()
|
||||
@@ -207,7 +207,7 @@
|
||||
A.unbolt()
|
||||
spawn()
|
||||
if(A && A.open())
|
||||
if(stat | (NOPOWER) && !lostPower && A && !A.gc_destroyed)
|
||||
if(stat | (NOPOWER) && !lostPower && A && !qdeleted(A))
|
||||
A.bolt()
|
||||
goIdle(1)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user