Skip to content

Commit

Permalink
Desc updates
Browse files Browse the repository at this point in the history
- Reorganizes pistol code
- Reverts M44 changes
- Creates non-tactical variant of .44 automag so you can hear the badass sound fx
- Spearhead no longer specified as a CMB/OCM weapon
  • Loading branch information
AmoryBlaine committed Aug 12, 2024
1 parent c682027 commit e563f82
Show file tree
Hide file tree
Showing 5 changed files with 242 additions and 228 deletions.
9 changes: 7 additions & 2 deletions code/game/objects/items/storage/belt.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1254,8 +1254,13 @@
for(var/i = 1 to storage_slots - 1)
new /obj/item/ammo_magazine/pistol/highpower/black(src)

/obj/item/storage/belt/gun/m4a3/highpower/tactical/fill_preset_inventory()
handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/tactical())
/obj/item/storage/belt/gun/m4a3/highpower/automag/fill_preset_inventory()
handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/automag())
for(var/i = 1 to storage_slots - 1)
new /obj/item/ammo_magazine/pistol/highpower/automag(src)

/obj/item/storage/belt/gun/m4a3/highpower/automag/tactical/fill_preset_inventory()
handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/automag/tactical())
for(var/i = 1 to storage_slots - 1)
new /obj/item/ammo_magazine/pistol/highpower/automag(src)

Expand Down
Loading

0 comments on commit e563f82

Please sign in to comment.