Skip to content

Commit

Permalink
UPP rounds box storage fix (#7158)
Browse files Browse the repository at this point in the history
# About the pull request
fixes #6930. corrects the type of ammo the box can store.

<!-- 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
# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>


# Changelog
:cl:
fix: fixes UPP ammo storage boxes
/:cl:
  • Loading branch information
deathrobotpunch committed Sep 16, 2024
1 parent 3b67024 commit 93b5944
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/projectiles/ammo_boxes/round_boxes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
overlay_gun_type = "_rounds_type71"
overlay_content = "_type71_reg"
caliber = "5.45x39mm"
default_ammo = /datum/ammo/bullet/rifle
default_ammo = /datum/ammo/bullet/rifle/type71

/obj/item/ammo_box/rounds/type71/empty
empty = TRUE
Expand All @@ -115,7 +115,7 @@
icon_state = "base_type71"
overlay_gun_type = "_rounds_type71"
overlay_content = "_type71_ap"
default_ammo = /datum/ammo/bullet/rifle/ap
default_ammo = /datum/ammo/bullet/rifle/type71/ap

/obj/item/ammo_box/rounds/type71/ap/empty
empty = TRUE
Expand Down

0 comments on commit 93b5944

Please sign in to comment.