Skip to content

Commit

Permalink
full auto by default
Browse files Browse the repository at this point in the history
  • Loading branch information
harryob committed Sep 4, 2023
1 parent f045488 commit 13e252d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/modules/projectiles/gun_helpers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -693,15 +693,15 @@ DEFINES in setup.dm, referenced here.
var/old_firemode = gun_firemode
gun_firemode_list.len = 0

if(start_automatic)
gun_firemode_list |= GUN_FIREMODE_AUTOMATIC

if(start_semiauto)
gun_firemode_list |= GUN_FIREMODE_SEMIAUTO

if(burst_amount > BURST_AMOUNT_TIER_1)
gun_firemode_list |= GUN_FIREMODE_BURSTFIRE

if(start_automatic)
gun_firemode_list |= GUN_FIREMODE_AUTOMATIC

if(!length(gun_firemode_list))
CRASH("[src] called setup_firemodes() with an empty gun_firemode_list")

Expand Down

0 comments on commit 13e252d

Please sign in to comment.