SimpleClans

SimpleClans

467k Downloads

Still no debug output from "unknown command"

MonsterTKE opened this issue ยท 18 comments

commented

Everything else is looking good.

commented

Ok the only other issue I see, and I just enabled this for the first time today. Is the clan tags over players, It seems to be intermittent. Started out with them there, now they have disappeared?

commented

I know that bug, same with capes, it has to do with spout. I haven't been able to track it down. Does it happen every time someone logs on?

commented

Also if they sneak the title goes away

commented

It seems like it did happen when someone logs on, They came back a minute or so later though.

Track it down? LOL. Im amazed that you guys are able to get this crazy mish mash of stuff to even start up. Let alone get 100 people on for a day or two between restarts.

Seriously though, Thanks for all of your help and thanks for the great plugins. Hopefully you can find some time in your new venture to pop around once in awhile. Good luck.

commented

can you show me a screenshot of it and any thing that comes up on the logs?

commented

also when does it happen? and when doesn't it happen?

commented

It happens now everytime I enter a /clan command. No log output at all. Give me one second and Ill post some screens and a paste of the log.

commented

http://imgur.com/Xk2AJ screenie,

http://pastebin.com/T1z24FZy Full server log from startup. In between my connecting and disconnecting I issued /clan
It executed fine, just with the "unknown command: warning at the end.

Also... Stupid comment and close button -.-

commented

is this something new with 1.8 or is it an old issue? What exact version did this start happening on?

commented

One second.

commented

Nope no change with that version. This just started happening with the 1.0 versions. Though I do recall this issue happening way back in the beginning when you released this.

commented

I've tested and cant reproduce the problem in my dev nor live servers. I have a feeling it has to do with another plugin listening in on the chat without first checking if the event has already been canceled first:

if (event.isCancelled())
{
return;
}

Not every plugin author knows to respect already cancelled events. I suggest you try simpleclans with no other plugins so you don't get the error then add in half your plugins, and see if comes up, then you can discard half your plugins, keep doing that until you find the plugin that is conflicting.

commented

Im going to remove herochat. 99% chance that is the issue.

commented

I'm reading the commands before it is processed, If i see one of simpleclans commands i act on it and cancel the event. so i'm relying on other plugins properly handling cancelled events.

public void onPlayerCommandPreprocess(PlayerCommandPreprocessEvent event)
{
    if (event.isCancelled())
    {
        return;
commented

Or not :/

I get the feeling I am going to be apologizing profusely in 1 minute.

commented

Yep. Im very very sorry I wasted your time. I have a plugin on my dev server that is not present on my production box. I totally forgot that it modifies chat.

commented

aha! ok cool. good thing we foumd the source ahah. no worries.