Oh yeah, that happened with me too. I think it has to do with something in the RPG. To fix it:
Open up header.php (root/UBS):
Find:
Code:
if($user_name != Guest && $room != 'lobby') {
REPLACE WITH:
Code:
if($user_name != Guest && $room != 'lobby' && $room != 'yes') {
And in index.php (root/UBS):
Find:
Code:
if($user_name != Guest && $room != 'lobby'){
REPLACE WITH:
Code:
if($user_name != Guest && $room != 'lobby' && $room != 'yes'){