b3feddfef3
* try to resolve merge conflict * feat: TU19 (Dec 2014) Features & Content (#32) * December 2014 files * Working release build * Fix compilation issues * Add sound to Windows64Media * Add DLC content and force Tutorial DLC * Revert "Add DLC content and force Tutorial DLC" This reverts commit 97a43994725008e35fceb984d5549df9c8cea470. * Disable broken light packing * Disable breakpoint during DLC texture map load Allows DLC loading but the DLC textures are still broken * Fix post build not working * ... * fix vs2022 build * fix cmake build --------- Co-authored-by: Loki <lokirautio@gmail.com>
59 lines
1.6 KiB
C++
59 lines
1.6 KiB
C++
#include "stdafx.h"
|
|
#include "net.minecraft.commands.h"
|
|
#include "..\Minecraft.Client\MinecraftServer.h"
|
|
#include "..\Minecraft.Client\PlayerList.h"
|
|
#include "net.minecraft.world.level.h"
|
|
#include "ExperienceCommand.h"
|
|
|
|
EGameCommand ExperienceCommand::getId()
|
|
{
|
|
return eGameCommand_Experience;
|
|
}
|
|
|
|
int ExperienceCommand::getPermissionLevel()
|
|
{
|
|
return LEVEL_GAMEMASTERS;
|
|
}
|
|
|
|
void ExperienceCommand::execute(shared_ptr<CommandSender> source, byteArray commandData)
|
|
{
|
|
// if (args.length > 0) {
|
|
// Player player;
|
|
// String inputAmount = args[0];
|
|
//
|
|
// boolean levels = inputAmount.endsWith("l") || inputAmount.endsWith("L");
|
|
// if (levels && inputAmount.length() > 1) inputAmount = inputAmount.substring(0, inputAmount.length() - 1);
|
|
//
|
|
// int amount = convertArgToInt(source, inputAmount);
|
|
// boolean take = amount < 0;
|
|
//
|
|
// if (take) amount *= -1;
|
|
//
|
|
// if (args.length > 1) {
|
|
// player = convertToPlayer(source, args[1]);
|
|
// } else {
|
|
// player = convertSourceToPlayer(source);
|
|
// }
|
|
//
|
|
// if (levels) {
|
|
// if (take) {
|
|
// player.giveExperienceLevels(-amount);
|
|
// logAdminAction(source, "commands.xp.success.negative.levels", amount, player.getAName());
|
|
// } else {
|
|
// player.giveExperienceLevels(amount);
|
|
// logAdminAction(source, "commands.xp.success.levels", amount, player.getAName());
|
|
// }
|
|
// } else {
|
|
// if (take) {
|
|
// throw new UsageException("commands.xp.failure.widthdrawXp");
|
|
// } else {
|
|
// player.increaseXp(amount);
|
|
// logAdminAction(source, "commands.xp.success", amount, player.getAName());
|
|
// }
|
|
// }
|
|
//
|
|
// return;
|
|
// }
|
|
//
|
|
// throw new UsageException("commands.xp.usage");
|
|
} |