Skip to content

Commit

Permalink
Remove superfluous logic in revolver/rack()
Browse files Browse the repository at this point in the history
  • Loading branch information
blinkdog committed Jun 19, 2024
1 parent 4a0299e commit 600dce6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/projectiles/guns/ballistic/revolver.dm
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@
to_chat(user, "<span class='notice'>You rack the [bolt_wording] of \the [src].</span>")
playsound(src, rack_sound, rack_sound_volume, rack_sound_vary)

if((!safety && !semi_auto) || (!safety && !semi_auto))
if(!safety && !semi_auto)
chamber_round(TRUE)
SEND_SIGNAL(src, COMSIG_UPDATE_AMMO_HUD)
update_appearance()
Expand Down

0 comments on commit 600dce6

Please sign in to comment.