From 9889b4f4d4893fc0ac3e1ed105fb685379911fc7 Mon Sep 17 00:00:00 2001 From: firebudgy <153147550+firebudgy@users.noreply.github.com> Date: Thu, 6 Feb 2025 17:22:13 -0800 Subject: [PATCH] .45-70 Ammo Can Be Stacked to 6 Rounds (#4145) ## About The Pull Request .45-70 comes in stacks of 6 rounds in a box. It can only be manually stacked to 5. This fixes that. ## Why It's Good For The Game Consistency ## Changelog :cl: fix: .45-70 stack size /:cl: --- code/modules/projectiles/ammunition/ballistic/revolver.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/ammunition/ballistic/revolver.dm b/code/modules/projectiles/ammunition/ballistic/revolver.dm index 60c3722b934a..3f9f1cc5e920 100644 --- a/code/modules/projectiles/ammunition/ballistic/revolver.dm +++ b/code/modules/projectiles/ammunition/ballistic/revolver.dm @@ -28,7 +28,7 @@ caliber = ".45-70" icon_state = "magnum-brass" projectile_type = /obj/projectile/bullet/a4570 - stack_size = 5 + stack_size = 6 /obj/item/ammo_casing/a4570/match name = ".45-70 match bullet casing"