Initial commit

This commit is contained in:
NOTPIES
2026-03-15 22:25:51 -03:00
commit c356c7b911
100 changed files with 8788 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#include "stdafx.h"
#include "PardonCommand.h"
#include "ServerCommand.h"
#include "../../Minecraft.Client/ConsoleInputSource.h"
#include "../../Minecraft.Client/MinecraftServer.h"
#include "../Core/ServerLists.h"
#include "ServerTextList.h"
#include <sstream>
void PardonCommand::execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server)
{
wstringstream ss(args);
wstring playerName;
if (!(ss >> playerName))
{
src->warn(L"Usage: /pardon <player>");
return;
}
ServerLists_GetBannedPlayers()->remove(playerName);
ServerCommand::notifyAdmins(src, server, L"Unbanned player " + playerName);
}