I decided to post the fix myself for any lazy or non-coder admins out there;
1) Open includes/functions_online.php
2) Find
PHP Code:
case 'modcplogin':
$userinfo['action'] = $vbphrase['moderator_control_panel_login'];
break;
3) Underneath add
PHP Code:
case 'hangman':
$userinfo['where'] = "<a href=\"hangman.php?$session[sessionurl]\">Playing Hangman</a>";
break;
4) Find
PHP Code:
case '/robots.txt':
$userinfo['activity'] = 'spider';
break;
5) Underneath add
PHP Code:
case 'hangman.php':
$userinfo['activity'] = 'hangman';
break;
6) Save and upload includes/functions_online.php
Done!