Skip to content

Commit

Permalink
the
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben10083 committed Aug 25, 2023
1 parent 52cb907 commit 70b23f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/game/machinery/ARES/ARES_procs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ GLOBAL_LIST_INIT(maintenance_categories, list(
// -- Emergency Buttons -- //
if("general_quarters")
if(!COOLDOWN_FINISHED(src, ares_quarters_cooldown))
to_chat(usr, SPAN_WARNING("It has not been long enough since last General Quarters call!"))
to_chat(usr, SPAN_WARNING("It has not been long enough since the last General Quarters call!"))
playsound(src, 'sound/machines/buzz-two.ogg', 15, 1)
return FALSE
if(security_level < SEC_LEVEL_RED)
Expand Down
2 changes: 1 addition & 1 deletion tgui/packages/tgui/interfaces/AresInterface.js
Original file line number Diff line number Diff line change
Expand Up @@ -1385,7 +1385,7 @@ const Emergency = (props, context) => {
let quarters_reason = 'Call for General Quarters.';
if (quartersCooldown) {
quarters_reason =
'It has not been long enough since last General Quarters call.';
'It has not been long enough since the last General Quarters call.';
}
const canDistress = alert_level === 2 && !distressCooldown && minimumEvacTime;
let distress_reason = 'Launch a Distress Beacon.';
Expand Down

0 comments on commit 70b23f2

Please sign in to comment.