Skip to content

Commit

Permalink
Yautja armor nerf-fix (#3941)
Browse files Browse the repository at this point in the history
# About the pull request
Reduces yautja armor bullet resistance by 5, and puts that 5 extra onto
the heavy armor.

<!-- Remove this text and explain what the purpose of your PR is.

Mention if you have tested your changes. If you changed a map, make sure
you used the mapmerge tool.
If this is an Issue Correction, you can type "Fixes Issue #169420" to
link the PR to the corresponding Issue number #169420.

Remember: something that is self-evident to you might not be to others.
Explain your rationale fully, even if you feel it goes without saying.
-->

# 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:
  • Loading branch information
realforest2001 committed Jul 20, 2023
1 parent af1b2c7 commit 6b8f1ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/cm_preds/yaut_items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 6b8f1ee

Please sign in to comment.