Skip to content

Commit ceedb3c

Browse files
committed
Remove call to deprecated useMojangMappings method on CommandAPIBukkitConfig
1 parent 90e6af8 commit ceedb3c

File tree

1 file changed

+1
-2
lines changed
  • commandapi-platforms/commandapi-bukkit/commandapi-bukkit-plugin-mojang-mapped/src/main/java/dev/jorel/commandapi

1 file changed

+1
-2
lines changed

commandapi-platforms/commandapi-bukkit/commandapi-bukkit-plugin-mojang-mapped/src/main/java/dev/jorel/commandapi/CommandAPIMain.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ public void onLoad() {
5050
.useLatestNMSVersion(fileConfig.getBoolean("use-latest-nms-version"))
5151
.missingExecutorImplementationMessage(fileConfig.getString("messages.missing-executor-implementation"))
5252
.dispatcherFile(fileConfig.getBoolean("create-dispatcher-json") ? new File(getDataFolder(), "command_registration.json") : null)
53-
.shouldHookPaperReload(fileConfig.getBoolean("hook-paper-reload"))
54-
.useMojangMappings(true);
53+
.shouldHookPaperReload(fileConfig.getBoolean("hook-paper-reload"));
5554

5655
for (String pluginName : fileConfig.getStringList("skip-sender-proxy")) {
5756
if (Bukkit.getPluginManager().getPlugin(pluginName) != null) {

0 commit comments

Comments
 (0)