Floors now properly select a destruction method to use when blown up (#56560)

This commit is contained in:
Qustinnus
2021-02-02 13:22:18 -08:00
committed by GitHub
parent 21965710a0
commit af55efcaa3
2 changed files with 2 additions and 2 deletions
@@ -10,7 +10,7 @@
/obj/effect/particle_effect/expl_particles/LateInitialize()
var/direct = pick(GLOB.alldirs)
var/steps_amt = pick(1;25,2;50,3,4;200)
var/steps_amt = pick(25;1,50;2,100;3,200;4)
for(var/j in 1 to steps_amt)
step(src, direct)
sleep(1)