mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-28 21:21:30 +00:00
13 lines
207 B
C++
Executable File
13 lines
207 B
C++
Executable File
#include "zone/client.h"
|
|
#include "zone/dynamic_zone.h"
|
|
|
|
void command_dzkickplayers(Client *c, const Seperator *sep)
|
|
{
|
|
if (c) {
|
|
auto dz = c->GetExpedition();
|
|
if (dz) {
|
|
dz->DzKickPlayers(c);
|
|
}
|
|
}
|
|
}
|