mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
17 lines
260 B
C++
Executable File
17 lines
260 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_showzonegloballoot(Client *c, const Seperator *sep)
|
|
{
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"Global loot for {} ({}).",
|
|
zone->GetLongName(),
|
|
zone->GetZoneID()
|
|
).c_str()
|
|
);
|
|
|
|
zone->ShowZoneGlobalLoot(c);
|
|
}
|
|
|