eqemu-server/zone/gm_commands/dzkickplayers.cpp
2025-12-26 20:58:07 -08:00

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