Ok, I took a look and I think it has something to do with this code in inc\classes\sendLoginInfo.php:
PHP Code:
// # Paul M # Prevent non allowed members joining .
if(ChatServer::userInRole($this->userid, ROLE_NOBODY))
{
$user = ChatServer::getUser($this->userid);
$this->userid = null;
return $this->sendBack(new Message('lout', null, null, 'banned'));
}
I just can't figure out whats wrong