mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 14:41:28 +00:00
* [Commands] Cleanup #reloadmerchants Command. - Cleanup messages and logic. - Make the reloading of merchants global instead of zone specific. * Update worldserver.cpp * Update worldserver.cpp
11 lines
272 B
C++
Executable File
11 lines
272 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_reloadmerchants(Client *c, const Seperator *sep)
|
|
{
|
|
c->Message(Chat::White, "Attempting to reload merchants globally.");
|
|
auto pack = new ServerPacket(ServerOP_ReloadMerchants, 0);
|
|
worldserver.SendPacket(pack);
|
|
safe_delete(pack);
|
|
}
|
|
|