7
I hade the exact same problem, but i found that this only occurred if the user hadn't enterd anything on "full name".
A way to solve this is to add the following code to index.php in the frozen bobbles module
le="color: #000000"><?php if (!($xoopsUser->getVar('name'))) { $xoopsTpl->assign('playername',$xoopsUser->getVar('uname')); }
below the following row.
le="color: #000000"><?php $xoopsTpl->assign('playername',$xoopsUser->getVar('name'));
Now Frozen Bubble will use the user id in the high score list instead if no "full name" is to be found.