mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-08-25 22:28:00 +01:00
Update code/game/objects/items/weapons/explosives.dm
Co-authored-by: Spookerton <spkrtn@pm.me>
This commit is contained in:
@@ -83,15 +83,10 @@
|
||||
if(!target)
|
||||
target = src
|
||||
|
||||
var/turf/T = null
|
||||
if(isturf(get_turf(target))
|
||||
T = get_turf(target)
|
||||
if(LAZYLEN(location) == 3)
|
||||
var/turf/T = get_turf(target)
|
||||
if (!T && length(location))
|
||||
T = locate(location[1], location[2], location[3])
|
||||
else
|
||||
T = get_turf(target)
|
||||
|
||||
if(isturf(T))
|
||||
if (T)
|
||||
explosion(T, blast_dev, blast_heavy, blast_light, blast_flash)
|
||||
|
||||
if(target)
|
||||
|
||||
Reference in New Issue
Block a user