New upcoming release 5.0 - Reintroducing the custom Goat horns, but also add the custom player heads !

Too many changes to be listed, but require a PaperMC server 1.21.7-9 at minimum.
This commit is contained in:
Athar42
2025-07-21 22:04:05 +02:00
parent 3dd9c47147
commit 225d71c5b3
2 changed files with 4 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ mod_id=customdiscsplugin
# Target an older API to make it compatible with older versions of Simple Voice Chat # Target an older API to make it compatible with older versions of Simple Voice Chat
voicechat_api_version=2.5.31 voicechat_api_version=2.5.31
command_api_version=10.1.1 command_api_version=10.1.2
plugin_version=5.0 plugin_version=5.0
maven_group=me.Navoei.customdiscsplugin maven_group=me.Navoei.customdiscsplugin

View File

@@ -59,7 +59,9 @@ public final class CustomDiscs extends JavaPlugin {
@Override @Override
public void onLoad() { public void onLoad() {
CustomDiscs.instance = this; CustomDiscs.instance = this;
CommandAPI.onLoad(new CommandAPIBukkitConfig(this).verboseOutput(true).beLenientForMinorVersions(true)); CommandAPI.onLoad(new CommandAPIBukkitConfig(this).verboseOutput(true));
//To get CommandAPI working on newer MC Release - for development
//CommandAPI.onLoad(new CommandAPIBukkitConfig(this).verboseOutput(true).beLenientForMinorVersions(true));
new CustomDiscCommand(this).register("customdiscs"); new CustomDiscCommand(this).register("customdiscs");
} }