mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2024-11-22 04:16:17 +00:00
18 lines
1.1 KiB
Diff
18 lines
1.1 KiB
Diff
--- a/net/minecraft/server/commands/CommandDifficulty.java
|
|
+++ b/net/minecraft/server/commands/CommandDifficulty.java
|
|
@@ -44,11 +44,12 @@
|
|
|
|
public static int setDifficulty(CommandListenerWrapper commandlistenerwrapper, EnumDifficulty enumdifficulty) throws CommandSyntaxException {
|
|
MinecraftServer minecraftserver = commandlistenerwrapper.getServer();
|
|
+ net.minecraft.server.level.WorldServer worldServer = commandlistenerwrapper.getLevel(); // CraftBukkit
|
|
|
|
- if (minecraftserver.getWorldData().getDifficulty() == enumdifficulty) {
|
|
+ if (worldServer.getDifficulty() == enumdifficulty) { // CraftBukkit
|
|
throw CommandDifficulty.ERROR_ALREADY_DIFFICULT.create(enumdifficulty.getKey());
|
|
} else {
|
|
- minecraftserver.setDifficulty(enumdifficulty, true);
|
|
+ worldServer.serverLevelData.setDifficulty(enumdifficulty); // CraftBukkit
|
|
commandlistenerwrapper.sendSuccess(() -> {
|
|
return IChatBaseComponent.translatable("commands.difficulty.success", enumdifficulty.getDisplayName());
|
|
}, true);
|