mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCEMP-Server.git
synced 2026-05-21 23:24:50 +00:00
11 lines
303 B
C++
11 lines
303 B
C++
#pragma once
|
|
#include "ServerCommand.h"
|
|
|
|
class PardonIpCommand : public ServerCommand
|
|
{
|
|
public:
|
|
wstring getName() { return L"pardon-ip"; }
|
|
wstring getUsage() { return L"/pardon-ip <ip> - Unbans an IP address"; }
|
|
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
|
|
};
|