If this has been previously posted here or elsewhere, then my apologies.
I have found that if you delete a member and look at their awards (postbit mod is where I saw it), any unplayed games will show up under their or a guest's post (if you allow it). To fix this, I made the following change to the arcade hack:
In
functions_showthread.php, change:
Code:
if ($award['userid']==$post['userid']) {
to:
Code:
if ($award['userid']==$post['userid'] AND $post['userid']!=0) {
This is caused by the member ID being set to 0 and unplayed games having a award user ID of 0.