Update explosion.dm

This commit is contained in:
silicons
2020-08-02 00:29:47 -07:00
committed by GitHub
parent 97c8b756ad
commit fdbf488d69
+2 -1
View File
@@ -198,7 +198,8 @@ GLOBAL_LIST_EMPTY(explosions)
if((T == epicenter) && !QDELETED(explosion_source) && (get_turf(explosion_source) == T)) // Ensures explosives detonating from bags trigger other explosives in that bag
var/list/atoms = list()
for(var/atom/A in explosion_source.loc)
var/turf/T = get_turf(explosion_source) // yeah this is two get turfs but this should only happen once
for(var/atom/A in T)
atoms += A
for(var/i in atoms)
var/atom/A = i