diff --git a/zone/zone.cpp b/zone/zone.cpp index 7540232e0..08972de64 100755 --- a/zone/zone.cpp +++ b/zone/zone.cpp @@ -2737,13 +2737,12 @@ std::string Zone::GetZoneDescription() { if (!IsLoaded()) { return fmt::format( - "{} PID ({})", - IsStaticZone() ? "Static" : "Dynamic", + "PID ({})", EQ::GetPID() ); } - auto d = fmt::format( + return fmt::format( "{} ({}){}{}", GetLongName(), GetZoneID(), @@ -2764,8 +2763,6 @@ std::string Zone::GetZoneDescription() "" ) ); - - return d; } void Zone::SendReloadMessage(std::string reload_type)