From ccc1db6cf100b0e15b720da7bab7cadf6f5df8c4 Mon Sep 17 00:00:00 2001 From: NateDross <149045778+NateDross@users.noreply.github.com> Date: Tue, 12 Dec 2023 08:40:41 -0400 Subject: [PATCH] renamed 'M56 Battery' to 'M56 DV9 Battery' in requisitions munition vendor (#5196) # About the pull request Renames 'M56 Battery' in requisitions munition vendor to 'M56 DV9 Battery' # Explain why it's good for the game A Smartgunner will ask a Cargo Tech for a DV9 and they will be unable to search for one causing confusion. The battery itself is called a DV9 which is what the SG asks for and this edit fixes the vendor not listing it as such. # Testing Photographs and Procedure Minor text change. I verified it in-game and it's working correctly. # Changelog :cl: spellcheck: Edited 'M56 Battery' to 'M56 DV9 Battery' in requisitions munition vendor /:cl: --- code/game/machinery/vending/vendor_types/requisitions.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/vending/vendor_types/requisitions.dm b/code/game/machinery/vending/vendor_types/requisitions.dm index b5ed2c19fb78..4c1def0dc59a 100644 --- a/code/game/machinery/vending/vendor_types/requisitions.dm +++ b/code/game/machinery/vending/vendor_types/requisitions.dm @@ -228,7 +228,7 @@ list("M41A MK2 Extended Magazine (10x24mm)", round(scale * 8), /obj/item/ammo_magazine/rifle/extended, VENDOR_ITEM_REGULAR), list("SPECIAL AMMUNITION", -1, null, null), - list("M56 Battery", 4, /obj/item/smartgun_battery, VENDOR_ITEM_REGULAR), + list("M56 DV9 Battery", 4, /obj/item/smartgun_battery, VENDOR_ITEM_REGULAR), list("M56 Smartgun Drum", 4, /obj/item/ammo_magazine/smartgun, VENDOR_ITEM_REGULAR), list("M44 Heavy Speed Loader (.44)", 10, /obj/item/ammo_magazine/revolver/heavy, VENDOR_ITEM_REGULAR), list("M44 Marksman Speed Loader (.44)", 6, /obj/item/ammo_magazine/revolver/marksman, VENDOR_ITEM_REGULAR),