Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIRROR] Add single stack practice pistol magazines #3003

Open
wants to merge 1 commit into
base: dev-sierra
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions code/modules/projectiles/ammunition/boxes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,10 @@
labels = list("rubber")
ammo_type = /obj/item/ammo_casing/pistol/rubber

/obj/item/ammo_magazine/pistol/practice
labels = list("practice")
ammo_type = /obj/item/ammo_casing/pistol/practice

/obj/item/ammo_magazine/pistol/double
name = "doublestack pistol magazine"
icon_state = "pistol_mag"
Expand Down
5 changes: 4 additions & 1 deletion maps/torch/datums/supplypacks/security.dm
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,10 @@

/singleton/hierarchy/supply_pack/security/pistolammopractice
name = "Ammunition - pistol practice ammo"
contains = list(/obj/item/ammo_magazine/pistol/double/practice = 8)
contains = list(
/obj/item/ammo_magazine/pistol/double/practice = 4,
/obj/item/ammo_magazine/pistol/practice = 4
)
cost = 20
containertype = /obj/structure/closet/crate/secure/weapon
containername = "pistol practice ammunition crate"
Expand Down
Loading