From 765ae220faa09aa65ef40060bb2f345023724386 Mon Sep 17 00:00:00 2001 From: Iamgoofball Date: Tue, 24 Feb 2015 20:35:47 -0800 Subject: [PATCH] fixes blackpowder bombcap shit --- code/modules/reagents/Chemistry-Goon-Pyrotechnics.dm | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/code/modules/reagents/Chemistry-Goon-Pyrotechnics.dm b/code/modules/reagents/Chemistry-Goon-Pyrotechnics.dm index e5f9186b144..0d503e6164f 100644 --- a/code/modules/reagents/Chemistry-Goon-Pyrotechnics.dm +++ b/code/modules/reagents/Chemistry-Goon-Pyrotechnics.dm @@ -164,11 +164,5 @@ proc/goonchem_vortex(var/turf/simulated/T, var/setting_type, var/range, var/pull var/ex_heavy = round(created_volume / 8) var/ex_light = round(created_volume / 6) var/ex_flash = round(created_volume / 4) - if(ex_severe > 3) - ex_severe = 3 - if(ex_heavy > 7) - ex_heavy = 7 - if(ex_light > 14) - ex_light = 14 - explosion(T,ex_severe,ex_heavy,ex_light,ex_flash, 1, 1) + explosion(T,ex_severe,ex_heavy,ex_light,ex_flash, 1) return \ No newline at end of file