mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
14 lines
226 B
C++
Executable File
14 lines
226 B
C++
Executable File
#include "../client.h"
|
|
#include "../expedition.h"
|
|
|
|
void command_dzkickplayers(Client *c, const Seperator *sep)
|
|
{
|
|
if (c) {
|
|
auto expedition = c->GetExpedition();
|
|
if (expedition) {
|
|
expedition->DzKickPlayers(c);
|
|
}
|
|
}
|
|
}
|
|
|