From 6bf36f3e77b4a9aefbdcf4da111df4bee437a71c Mon Sep 17 00:00:00 2001 From: Fryguy Date: Mon, 8 Jan 2024 12:14:08 -0500 Subject: [PATCH] [Bug Fix] World Shutdown Filter (#3930) Moved World Shutdown to the System filter from base yellow. --- world/zonelist.cpp | 4 ++-- zone/gm_commands/worldshutdown.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/world/zonelist.cpp b/world/zonelist.cpp index c2db3676e..96c30c9d0 100644 --- a/world/zonelist.cpp +++ b/world/zonelist.cpp @@ -111,7 +111,7 @@ void ZSList::Process() { 0, 0, AccountStatus::Player, - Chat::Yellow, + Chat::System, fmt::format( "[SYSTEM] World will be shutting down in {} minutes.", ((shutdowntimer->GetRemainingTime() / 1000) / 60) @@ -759,7 +759,7 @@ void ZSList::WorldShutDown(uint32 time, uint32 interval) 0, 0, AccountStatus::Player, - Chat::Yellow, + Chat::System, fmt::format( "[SYSTEM] World will be shutting down in {} minutes.", (time / 60) diff --git a/zone/gm_commands/worldshutdown.cpp b/zone/gm_commands/worldshutdown.cpp index e42bcd29a..37940d1a7 100755 --- a/zone/gm_commands/worldshutdown.cpp +++ b/zone/gm_commands/worldshutdown.cpp @@ -17,7 +17,7 @@ void command_worldshutdown(Client *c, const Seperator *sep) ) { int time_minutes = (time / 60); quest_manager.WorldWideMessage( - Chat::Yellow, + Chat::System, fmt::format( "[SYSTEM] World will be shutting down in {} minutes.", time_minutes