From 6b8f1ee3bb49d798a148a6c54b44eb07867ffafb Mon Sep 17 00:00:00 2001 From: forest2001 <41653574+realforest2001@users.noreply.github.com> Date: Thu, 20 Jul 2023 10:02:24 +0100 Subject: [PATCH] Yautja armor nerf-fix (#3941) # About the pull request Reduces yautja armor bullet resistance by 5, and puts that 5 extra onto the heavy armor. # Explain why it's good for the game The nerf accidentally got put onto the armor no one uses, rather than the armor everyone uses. # Testing Photographs and Procedure # Changelog :cl: fix: Reduces yautja armor bullet resistance by 5, and puts that 5 extra onto the heavy armor. /:cl: --- code/modules/cm_preds/yaut_items.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/cm_preds/yaut_items.dm b/code/modules/cm_preds/yaut_items.dm index a6fb4658ed0b..8a3306817078 100644 --- a/code/modules/cm_preds/yaut_items.dm +++ b/code/modules/cm_preds/yaut_items.dm @@ -102,7 +102,7 @@ desc = "A suit of armor with light padding. It looks old, yet functional." armor_melee = CLOTHING_ARMOR_MEDIUMLOW - armor_bullet = CLOTHING_ARMOR_HIGH + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH armor_laser = CLOTHING_ARMOR_MEDIUMHIGH armor_energy = CLOTHING_ARMOR_MEDIUMHIGH armor_bomb = CLOTHING_ARMOR_HIGH @@ -118,7 +118,7 @@ flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_HEAD|BODY_FLAG_LEGS flags_item = ITEM_PREDATOR armor_melee = CLOTHING_ARMOR_HIGH - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_HIGH armor_laser = CLOTHING_ARMOR_HIGH armor_energy = CLOTHING_ARMOR_HIGH armor_bomb = CLOTHING_ARMOR_HIGHPLUS