Fireball explosion fixes

This commit is contained in:
ZomgPonies
2014-07-20 04:31:32 -04:00
parent 681ab587ad
commit 4e1d24609f
3 changed files with 7 additions and 10 deletions
+1 -2
View File
@@ -5,11 +5,10 @@
var/ex_severe = 1
var/ex_heavy = 2
var/ex_light = 3
var/ex_flash = 4
/obj/effect/proc_holder/spell/targeted/explosion/cast(list/targets)
for(var/mob/living/target in targets)
explosion(target.loc,ex_severe,ex_heavy,ex_light,ex_flash)
explosion(target.loc,ex_severe,ex_heavy,ex_light)
return
+2 -3
View File
@@ -268,7 +268,7 @@
icon_power_button = "spell_fireball"
/obj/effect/proc_holder/spell/turf/fireball/cast(var/turf/T)
explosion(T, -1, 0, 2, 3, 0, flame_range = 2)
explosion(T, -1, 0, 2, 0)
/obj/effect/proc_holder/spell/targeted/inflict_handler/fireball
@@ -277,6 +277,5 @@
/obj/effect/proc_holder/spell/targeted/explosion/fireball
ex_severe = -1
ex_heavy = -1
ex_heavy = 0
ex_light = 2
ex_flash = 5