Skip to content

Commit

Permalink
yea
Browse files Browse the repository at this point in the history
  • Loading branch information
FalloutFalcon committed Sep 5, 2024
1 parent ef1aa05 commit 960454e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion code/modules/projectiles/guns/ballistic.dm
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@
if (num_loaded)
to_chat(user, "<span class='notice'>You load [num_loaded] [cartridge_wording]\s into \the [src].</span>")
playsound(src, load_sound, load_sound_volume, load_sound_vary)
if (!chambered && !(reciever_flags & AMMO_RECIEVER_REQUIRES_UNIQUE_ACTION) && !(reciever_flags & AMMO_RECIEVER_CYCLE_ONLY_BEFORE_FIRE))
if (chambered == null && bolt_type == BOLT_TYPE_NO_BOLT)
chamber_round()
new_mag.update_appearance()
update_appearance()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
icon_state = "cm23"
item_state = "clip_generic"
w_class = WEIGHT_CLASS_NORMAL
mag_type = /obj/item/ammo_box/magazine/cm23
default_ammo_type = /obj/item/ammo_box/magazine/cm23
// can_suppress = FALSE
fire_sound = 'sound/weapons/gun/pistol/cm23.ogg'
rack_sound = 'sound/weapons/gun/pistol/candor_cocked.ogg'
Expand Down Expand Up @@ -46,7 +46,7 @@

icon_state = "cm70"
item_state = "clip_generic"
mag_type = /obj/item/ammo_box/magazine/m9mm_cm70
default_ammo_type = /obj/item/ammo_box/magazine/m9mm_cm70
// can_suppress = FALSE
burst_size = 3
burst_delay = 0.1 SECONDS
Expand Down Expand Up @@ -89,7 +89,7 @@
icon_state = "cm5"
item_state = "cm5"

mag_type = /obj/item/ammo_box/magazine/cm5_9mm
default_ammo_type = /obj/item/ammo_box/magazine/cm5_9mm
bolt_type = BOLT_TYPE_CLIP
weapon_weight = WEAPON_LIGHT
fire_sound = 'sound/weapons/gun/smg/cm5.ogg'
Expand Down Expand Up @@ -230,7 +230,7 @@ EMPTY_GUN_HELPER(automatic/smg/cm5)
weapon_weight = WEAPON_MEDIUM
w_class = WEIGHT_CLASS_BULKY
bolt_type = BOLT_TYPE_CLIP
mag_type = /obj/item/ammo_box/magazine/f4_308
default_ammo_type = /obj/item/ammo_box/magazine/f4_308
fire_sound = 'sound/weapons/gun/rifle/f4.ogg'
burst_size = 0
actions_types = list()
Expand Down Expand Up @@ -285,7 +285,7 @@ EMPTY_GUN_HELPER(automatic/smg/cm5)

fire_sound = 'sound/weapons/gun/sniper/cmf90.ogg'

mag_type = /obj/item/ammo_box/magazine/f90
default_ammo_type = /obj/item/ammo_box/magazine/f90
bolt_type = BOLT_TYPE_CLIP

fire_delay = 1 SECONDS
Expand Down Expand Up @@ -330,7 +330,7 @@ EMPTY_GUN_HELPER(automatic/smg/cm5)
w_class = WEIGHT_CLASS_BULKY
slot_flags = ITEM_SLOT_BACK
bolt_type = BOLT_TYPE_CLIP
mag_type = /obj/item/ammo_box/magazine/p16
default_ammo_type = /obj/item/ammo_box/magazine/p16
spread = 2
wield_delay = 0.5 SECONDS

Expand Down Expand Up @@ -393,7 +393,7 @@ EMPTY_GUN_HELPER(automatic/smg/cm5)
w_class = WEIGHT_CLASS_BULKY
slot_flags = ITEM_SLOT_BACK
manufacturer = MANUFACTURER_MINUTEMAN
mag_type = /obj/item/ammo_box/magazine/cm40_762_40_box
default_ammo_type = /obj/item/ammo_box/magazine/cm40_762_40_box

spread = 10
spread_unwielded = 35
Expand Down Expand Up @@ -449,7 +449,7 @@ EMPTY_GUN_HELPER(automatic/smg/cm5)

weapon_weight = WEAPON_MEDIUM
// can_suppress = FALSE
mag_type = /obj/item/ammo_box/magazine/cm15_12g
default_ammo_type = /obj/item/ammo_box/magazine/cm15_12g

empty_indicator = FALSE
unique_mag_sprites_for_variants = FALSE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
icon_state = "mauler"
item_state = "hp_generic"
w_class = WEIGHT_CLASS_NORMAL
mag_type = /obj/item/ammo_box/magazine/m9mm_mauler
default_ammo_type = /obj/item/ammo_box/magazine/m9mm_mauler
fire_delay = 0.06 SECONDS

gun_firemodes = list(FIREMODE_FULLAUTO)
Expand Down Expand Up @@ -58,7 +58,7 @@

icon_state = "spitter"
item_state = "spitter"
mag_type = /obj/item/ammo_box/magazine/spitter_9mm
default_ammo_type = /obj/item/ammo_box/magazine/spitter_9mm
bolt_type = BOLT_TYPE_OPEN
weapon_weight = WEAPON_LIGHT
show_magazine_on_sprite = TRUE
Expand Down Expand Up @@ -133,7 +133,7 @@

icon_state = "pounder"
item_state = "pounder"
mag_type = /obj/item/ammo_box/magazine/c22lr_pounder_pan
default_ammo_type = /obj/item/ammo_box/magazine/c22lr_pounder_pan
burst_size = 1
fire_delay = 0.05 SECONDS
spread = 25
Expand Down Expand Up @@ -180,7 +180,7 @@

icon_state = "shredder"
item_state = "shredder"
mag_type = /obj/item/ammo_box/magazine/m12_shredder
default_ammo_type = /obj/item/ammo_box/magazine/m12_shredder
spread = 15
recoil = 2
recoil_unwielded = 7
Expand Down

0 comments on commit 960454e

Please sign in to comment.