Should fix a rare edgecase with explosions and shuttles (#51017)

This commit is contained in:
spookydonut
2020-05-28 19:36:24 +02:00
committed by GitHub
parent 6b4afdfc29
commit 3bcb6602b6
2 changed files with 8 additions and 0 deletions
+6
View File
@@ -74,6 +74,12 @@ SUBSYSTEM_DEF(explosions)
/datum/controller/subsystem/explosions/proc/is_exploding()
return (lowturf.len || medturf.len || highturf.len || flameturf.len || throwturf.len || lowobj.len || medobj.len || highobj.len)
/datum/controller/subsystem/explosions/proc/wipe_turf(turf/T)
lowturf -= T
medturf -= T
highturf -= T
flameturf -= T
throwturf -= T
/client/proc/check_bomb_impacts()
set name = "Check Bomb Impact"