Something I broke in a previous PR that I didn't see
This commit is contained in:
@@ -821,7 +821,9 @@
|
|||||||
timer = world.time + cooldown_time
|
timer = world.time + cooldown_time
|
||||||
if(isliving(target) && chaser_timer <= world.time) //living and chasers off cooldown? fire one!
|
if(isliving(target) && chaser_timer <= world.time) //living and chasers off cooldown? fire one!
|
||||||
chaser_timer = world.time + chaser_cooldown
|
chaser_timer = world.time + chaser_cooldown
|
||||||
new /obj/effect/temp_visual/hierophant/chaser(get_turf(user), user, target, chaser_speed, friendly_fire_check)
|
var/obj/effect/temp_visual/hierophant/chaser/C = new(get_turf(user), user, target, chaser_speed, friendly_fire_check)
|
||||||
|
C.damage = 30
|
||||||
|
C.monster_damage_boost = FALSE
|
||||||
add_logs(user, target, "fired a chaser at", src)
|
add_logs(user, target, "fired a chaser at", src)
|
||||||
else
|
else
|
||||||
INVOKE_ASYNC(src, .proc/cardinal_blasts, T, user) //otherwise, just do cardinal blast
|
INVOKE_ASYNC(src, .proc/cardinal_blasts, T, user) //otherwise, just do cardinal blast
|
||||||
|
|||||||
@@ -525,7 +525,9 @@ Difficulty: Hard
|
|||||||
targetturf = get_turf(target)
|
targetturf = get_turf(target)
|
||||||
|
|
||||||
/obj/effect/temp_visual/hierophant/chaser/proc/make_blast()
|
/obj/effect/temp_visual/hierophant/chaser/proc/make_blast()
|
||||||
new /obj/effect/temp_visual/hierophant/blast(loc, caster, friendly_fire_check)
|
var/obj/effect/temp_visual/hierophant/blast/B = new(loc, caster, friendly_fire_check)
|
||||||
|
B.damage = damage
|
||||||
|
B.monster_damage_boost = monster_damage_boost
|
||||||
|
|
||||||
/obj/effect/temp_visual/hierophant/telegraph
|
/obj/effect/temp_visual/hierophant/telegraph
|
||||||
icon = 'icons/effects/96x96.dmi'
|
icon = 'icons/effects/96x96.dmi'
|
||||||
|
|||||||
Reference in New Issue
Block a user