Skip to content

Commit

Permalink
Removes siren sounds from Drug Bust and Bank Robbery
Browse files Browse the repository at this point in the history
  • Loading branch information
savethetreez committed Jan 19, 2024
1 parent 8d1b2d4 commit 344b2a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@
/obj/structure/emergency_lights/proc/check_sound()
if (world.realtime >= lastsoundcheck)
if (on)
if (map.ID != MAP_DRUG_BUST || map.ID != MAP_BANK_ROBBERY)
if (map.ID != MAP_DRUG_BUST && map.ID != MAP_BANK_ROBBERY)
playsound(loc,'sound/machines/police_siren.ogg',100,FALSE,15)
lastsoundcheck = world.realtime+55
spawn(55)
Expand Down

0 comments on commit 344b2a4

Please sign in to comment.