mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 13:41:31 +00:00
17 lines
395 B
C++
Executable File
17 lines
395 B
C++
Executable File
#include "../client.h"
|
|
#include "../worldserver.h"
|
|
|
|
extern WorldServer worldserver;
|
|
|
|
void command_reloadperlexportsettings(Client *c, const Seperator *sep)
|
|
{
|
|
if (c) {
|
|
auto pack = new ServerPacket(ServerOP_ReloadPerlExportSettings, 0);
|
|
worldserver.SendPacket(pack);
|
|
c->Message(Chat::Red, "Successfully sent the packet to world to reload Perl Export settings");
|
|
safe_delete(pack);
|
|
|
|
}
|
|
}
|
|
|