Skip to content

Commit

Permalink
Requested Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben10083 committed Aug 25, 2023
1 parent 090067b commit 52cb907
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/game/machinery/ARES/ARES_procs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -511,8 +511,8 @@ GLOBAL_LIST_INIT(maintenance_categories, list(
to_chat(usr, SPAN_WARNING("It has not been long enough since last General Quarters call!"))
playsound(src, 'sound/machines/buzz-two.ogg', 15, 1)
return FALSE
if(security_level != SEC_LEVEL_RED && security_level != SEC_LEVEL_DELTA)
set_security_level(2, no_sound = TRUE, announce = FALSE)
if(security_level < SEC_LEVEL_RED)
set_security_level(SEC_LEVEL_RED, no_sound = TRUE, announce = FALSE)
shipwide_ai_announcement("ATTENTION! GENERAL QUARTERS. ALL HANDS, MAN YOUR BATTLESTATIONS.", MAIN_AI_SYSTEM, 'sound/effects/GQfullcall.ogg')
log_game("[key_name(usr)] has called for general quarters via ARES.")
message_admins("[key_name_admin(usr)] has called for general quarters via ARES.")
Expand Down

0 comments on commit 52cb907

Please sign in to comment.