mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 22:01:30 +00:00
9 lines
204 B
C++
Executable File
9 lines
204 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_reloadtraps(Client *c, const Seperator *sep)
|
|
{
|
|
entity_list.UpdateAllTraps(true, true);
|
|
c->Message(Chat::Default, "Traps reloaded for %s.", zone->GetShortName());
|
|
}
|
|
|