From eae13b9e06bb52b7ac87d095a46e997547552da3 Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Tue, 12 Jan 2016 22:54:50 -0500 Subject: [PATCH] Reactive tesla armor uses the tesla lightning bolts instead of revenant lightning --- code/modules/clothing/suits/armor.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index 89c27f94d13..caccd580ebc 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -228,7 +228,7 @@ for(var/mob/living/M in view(6, owner)) if(M == owner) continue - owner.Beam(M,icon_state="purple_lightning",icon='icons/effects/effects.dmi',time=5) + owner.Beam(M,icon_state="lightning[rand(1, 12)]",icon='icons/effects/effects.dmi',time=5) M.adjustFireLoss(25) playsound(M, 'sound/machines/defib_zap.ogg', 50, 1, -1) return 1