From fdc87e932452edafb52c68bc1caf2d53957ecf70 Mon Sep 17 00:00:00 2001 From: Incoming Date: Fri, 11 Dec 2015 20:12:21 -0500 Subject: [PATCH] Replaces the armor bonus with something that should actually work --- code/modules/events/wizard/rpgloot.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/events/wizard/rpgloot.dm b/code/modules/events/wizard/rpgloot.dm index 636395194f7..140a72ec0f1 100644 --- a/code/modules/events/wizard/rpgloot.dm +++ b/code/modules/events/wizard/rpgloot.dm @@ -25,7 +25,8 @@ I.force = max(0,I.force + quality) I.throwforce = max(0,I.throwforce + quality) - I.armor += quality + for(var/armor_value in I.armor) + armor_value += quality if(istype(I,/obj/item/weapon/storage)) var/obj/item/weapon/storage/S = I