Skip to content

Commit

Permalink
fix reput back marksman ammo for mp
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien committed Aug 24, 2023
1 parent 43fe68a commit 20a0713
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions code/modules/cm_marines/equipment/guncases.dm
Original file line number Diff line number Diff line change
Expand Up @@ -315,16 +315,16 @@
//M44 Combat Revolver
/obj/item/storage/box/guncase/m44
name = "\improper M44 Combat Revolver case"
desc = "A gun case containing an M44 Combat Revolver."
desc = "A gun case containing an M44 Combat Revolver loaded with marksman ammo."
storage_slots = 5
can_hold = list(/obj/item/attachable/flashlight, /obj/item/weapon/gun/revolver/m44, /obj/item/ammo_magazine/revolver)

/obj/item/storage/box/guncase/m44/fill_preset_inventory()
new /obj/item/attachable/flashlight(src)
new /obj/item/weapon/gun/revolver/m44(src)
new /obj/item/ammo_magazine/revolver(src)
new /obj/item/ammo_magazine/revolver(src)
new /obj/item/ammo_magazine/revolver(src)
new /obj/item/weapon/gun/revolver/m44/mp(src)
new /obj/item/ammo_magazine/revolver/marksman(src)
new /obj/item/ammo_magazine/revolver/marksman(src)
new /obj/item/ammo_magazine/revolver/marksman(src)

//M4A3 Service Pistol
/obj/item/storage/box/guncase/m4a3
Expand Down

0 comments on commit 20a0713

Please sign in to comment.