You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
java.lang.IllegalStateException: Command Framework has not been relocated correctly!
at me.despical.commandframework.CommandFramework.checkRelocation(CommandFramework.java:174)
at me.despical.commandframework.CommandFramework.<init>(CommandFramework.java:139)
at com.kweezy.kwessentials.KwEssentials.onEnable(KwEssentials.java:10)
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:217)
at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:457)
at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:382)
at org.bukkit.craftbukkit.v1_5_R3.CraftServer.loadPlugin(CraftServer.java:285)
at org.bukkit.craftbukkit.v1_5_R3.CraftServer.enablePlugins(CraftServer.java:267)
at net.minecraft.server.v1_5_R3.MinecraftServer.j(MinecraftServer.java:310)
at net.minecraft.server.v1_5_R3.MinecraftServer.e(MinecraftServer.java:289)
at net.minecraft.server.v1_5_R3.MinecraftServer.a(MinecraftServer.java:249)
at net.minecraft.server.v1_5_R3.DedicatedServer.init(DedicatedServer.java:160)
at net.minecraft.server.v1_5_R3.MinecraftServer.run(MinecraftServer.java:388)
at net.minecraft.server.v1_5_R3.ThreadServerApplication.run(Unknown Source)
any reasons i should do this? how to supress it?
The text was updated successfully, but these errors were encountered:
plugins {
id 'com.github.johnrengelman.shadow' version '7.1.2'
}
shadowJar {
relocate 'me.despical.commandframework', 'your.package.here'
}
Alternative Way
Add -Dcommandframework.suppressrelocation=true to your command line. This should only be used for testing purposes and not for production.
any reasons i should do this? how to supress it?
The text was updated successfully, but these errors were encountered: