Skip to content

Commit

Permalink
seperates sg ammo from utility picks
Browse files Browse the repository at this point in the history
  • Loading branch information
Zonespace27 committed Jan 13, 2024
1 parent 1001950 commit a85f44c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ GLOBAL_LIST_INIT(cm_vending_gear_smartgun, list(
list("SMARTGUN SET (MANDATORY)", 0, null, null, null),
list("Essential Smartgunner Set", 0, /obj/item/storage/box/m56_system, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY),

list("SMARTGUN AMMUNITION", 0, null, null, null),
list("M56 Smartgun Drum", 15, /obj/item/ammo_magazine/smartgun, null, VENDOR_ITEM_RECOMMENDED),

list("GUN ATTACHMENTS (CHOOSE 1)", 0, null, null, null),
list("Laser Sight", 0, /obj/item/attachable/lasersight, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR),
list("Red-Dot Sight", 0, /obj/item/attachable/reddot, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR),
Expand Down
4 changes: 3 additions & 1 deletion code/modules/cm_marines/equipment/weapons.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
icon = 'icons/obj/items/storage.dmi'
icon_state = "kit_case"
w_class = SIZE_HUGE
storage_slots = 4
storage_slots = 7
slowdown = 1
can_hold = list() //Nada. Once you take the stuff out it doesn't fit back in.
foldable = null
Expand All @@ -16,6 +16,8 @@
new /obj/item/weapon/gun/smartgun(src)
new /obj/item/smartgun_battery(src)
new /obj/item/clothing/suit/storage/marine/smartgunner(src)
for(var/i in 1 to 3)
new /obj/item/ammo_magazine/smartgun(src)
update_icon()

/obj/item/storage/box/m56_system/update_icon()
Expand Down

0 comments on commit a85f44c

Please sign in to comment.