Closed Rocologo closed 8 years ago
This is because we bundle our own copy of MCStats. You should not need to activate it when you're loading on a Glowstone server.
By the way, metrics loading should not be a failing error in your plugin in the first place. If you do still want that, you should check whether the server is a Glowstone server.
@gdude2002 we can move that package to net.glowstone
I agree, it should not break the plugin, but I dont know how to do it otherwise.
If you can tell me how to test if it is a Glowstone server I will add it to my onEnable() method?
if (getServer().getName().toLowerCase().contains("glowstone")) {
...
}
Thank you. :-)
@kamcio96 moved in 8c0e32d2fb4b8670a7947adc53762940e257bf5d.
Hi,
I'm trying to make my plugin MobHunting run with the Glowstone++ Server but Metrics fails in onEnable()
I don't understand why it fails, it work on both Spigot, PaperClip, CraftBukkit. What do I need to do to make it run?