mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
14 lines
259 B
C++
Executable File
14 lines
259 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_showzonegloballoot(Client *c, const Seperator *sep)
|
|
{
|
|
c->Message(
|
|
Chat::White,
|
|
"GlobalLoot for %s (%d:%d)",
|
|
zone->GetShortName(),
|
|
zone->GetZoneID(),
|
|
zone->GetInstanceVersion());
|
|
zone->ShowZoneGlobalLoot(c);
|
|
}
|
|
|