2023-06-16 13:02:43 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: TheMeinerLP <p.glanz@madfix.me>
|
|
|
|
Date: Tue, 13 Jun 2023 16:10:59 +0200
|
|
|
|
Subject: [PATCH] Don't enforce icanhasbukkit default if alias block exists
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2024-05-11 23:48:37 +02:00
|
|
|
index ddc1d66ae6a292e4aaa0bdd1088dfa0f7efc1ad3..83449758a2613076d6bbd61813a9d8cd4e2c2ed4 100644
|
2023-06-16 13:02:43 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2024-05-11 23:48:37 +02:00
|
|
|
@@ -355,7 +355,11 @@ public final class CraftServer implements Server {
|
2023-06-16 13:02:43 +02:00
|
|
|
}
|
|
|
|
this.commandsConfiguration = YamlConfiguration.loadConfiguration(this.getCommandsConfigFile());
|
|
|
|
this.commandsConfiguration.options().copyDefaults(true);
|
2023-10-27 01:34:58 +02:00
|
|
|
- this.commandsConfiguration.setDefaults(YamlConfiguration.loadConfiguration(new InputStreamReader(this.getClass().getClassLoader().getResourceAsStream("configurations/commands.yml"), Charsets.UTF_8)));
|
2023-06-16 13:02:43 +02:00
|
|
|
+ // Paper start - don't enforce icanhasbukkit default if alias block exists
|
2023-10-27 01:34:58 +02:00
|
|
|
+ final YamlConfiguration commandsDefaults = YamlConfiguration.loadConfiguration(new InputStreamReader(this.getClass().getClassLoader().getResourceAsStream("configurations/commands.yml"), Charsets.UTF_8));
|
2023-06-16 13:02:43 +02:00
|
|
|
+ if (this.commandsConfiguration.contains("aliases")) commandsDefaults.set("aliases", null);
|
|
|
|
+ this.commandsConfiguration.setDefaults(commandsDefaults);
|
2024-01-21 19:37:09 +01:00
|
|
|
+ // Paper end - don't enforce icanhasbukkit default if alias block exists
|
2023-06-16 13:02:43 +02:00
|
|
|
this.saveCommandsConfig();
|
|
|
|
|
|
|
|
// Migrate aliases from old file and add previously implicit $1- to pass all arguments
|