From 93b594496f5e464a5aae66acce1491325cc19375 Mon Sep 17 00:00:00 2001 From: deathrobotpunch <87455177+deathrobotpunch@users.noreply.github.com> Date: Mon, 16 Sep 2024 18:36:04 +0800 Subject: [PATCH] UPP rounds box storage fix (#7158) # About the pull request fixes #6930. corrects the type of ammo the box can store. # Explain why it's good for the game # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: fix: fixes UPP ammo storage boxes /:cl: --- code/modules/projectiles/ammo_boxes/round_boxes.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/projectiles/ammo_boxes/round_boxes.dm b/code/modules/projectiles/ammo_boxes/round_boxes.dm index ab1d1667c15f..b4849466c309 100644 --- a/code/modules/projectiles/ammo_boxes/round_boxes.dm +++ b/code/modules/projectiles/ammo_boxes/round_boxes.dm @@ -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 @@ -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