eqemu-server/zone/gm_commands/showzonegloballoot.cpp
2022-05-06 19:50:03 -04:00

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);
}