Skip to content

Commit

Permalink
Sentry fix (#16667)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lumipharon authored Oct 19, 2024
1 parent 197b04d commit 95e2adc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/projectiles/sentries.dm
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ GLOBAL_LIST_INIT(sentry_ignore_List, set_sentry_ignore_List())
gun.stop_fire()
firing = FALSE
update_minimap_icon()
if(!gun.rounds)
if(gun.rounds <= 0) //fucking lasers
sentry_alert(SENTRY_ALERT_AMMO)
return
if(CHECK_BITFIELD(gun.turret_flags, TURRET_RADIAL))
Expand Down

0 comments on commit 95e2adc

Please sign in to comment.