From 45f6f14c64de013e2055530ee10b74f7a1a61fd2 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Sat, 16 Jul 2022 09:39:13 -0400 Subject: [PATCH] Now follow up with a glory kill (#18387) --- code/modules/projectiles/projectile/energy.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/projectiles/projectile/energy.dm b/code/modules/projectiles/projectile/energy.dm index d9ed934b1c1..f28879af0a4 100644 --- a/code/modules/projectiles/projectile/energy.dm +++ b/code/modules/projectiles/projectile/energy.dm @@ -84,7 +84,7 @@ damage = 60 damage_type = BURN range = 9 - weaken = 2 SECONDS //This is going to knock you off your feet + knockdown = 4 SECONDS //This is going to knock you off your feet eyeblur = 10 SECONDS speed = 2 alwayslog = TRUE @@ -125,7 +125,7 @@ add_attack_logs(src, M, "Hit heavily by [src]") if(floored) to_chat(M, "You see a flash of briliant blue light as [src] explodes, knocking you to the ground and burning you!") - M.Weaken(2 SECONDS) + M.KnockDown(4 SECONDS) else to_chat(M, "You see a flash of briliant blue light as [src] explodes, burning you!") else