What is this error caused by? How do I fix it? Code: 2011-10-16 14:42:43 [SEVERE] Error occurred (in the plugin loader) while disabling Colors v1.7.5 (Is it up to date?): null java.lang.NullPointerException at java.lang.Class.isAssignableFrom(Native Method) at org.bukkit.plugin.java.JavaPluginLoader.removeClass(JavaPluginLoader.java:245) at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:992) at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:296) at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:289) at org.bukkit.craftbukkit.CraftServer.disablePlugins(CraftServer.java:166) at net.minecraft.server.MinecraftServer.stop(MinecraftServer.java:325) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:404) at net.minecraft.server.ThreadServerApplication.run(SourceFile:417)
Happens to everyone, I don't know about the team, but I've been looking into it myself... With what little time I have.
@feildmaster Yup, Build 1340 fixed the issue. I have no idea why the other build was recommended/doesn't work.
They fixed it right after the recommend, but it apparently didn't get updated before the new RB. This is correct.
Hello, im not sure if i am so post to post this in this forum but... The 1.2.3 release has came out. And on my server i am using Build for 1.2.3 and many many plugins wont load and i get so many errors. When the RB will release will this get fixed? I see you are removing some codes. Also u tell us to update our plugins. What if the plugin developer is no longer updateing it? And It's the only plugin that does this exact thing to my server? Plz give me some aswers.
this is the wrong place... there is a thread which was started by codename_B about updating plugins, take a look there. on a side note: @EvilSeph @Dinnerbone PLEASE start posting in the oops I broke your plugin again.
I will post any breaks I notice... Simply because this topic is here. On that note, I don't know of anything that breaks at the moment.
thanks... but those breakage should be posted in the team only thread.. this was just for discussion but that is better than nothing..
I do know of one break - if you fire a BlockBreakEvent manually, you'll have to update to include the list of drops in the constructor now.
is there a difference? so it would look like this Code: public void onPlayerChat(AsyncPlayerChatEvent chat)
And what is, if I want to modify the chat event (e.g. cancelling it). Afaik this isn't possible if it is asynchronous. Fabian
Cancelling the event is fine, but what you can't do is any non thread safe method, such as player.hasPermission
The reason being? XcraftChat does that to determine the correct formatting and it works like a charm. Is there a better way to check the senders permissions and formatting it's chatline?