False reports of exceeding limit
My server is Solo Only so I have the limit set to 1.

I've had 4 players so far kick back a notification that they broke the limit when it was their own TC and nobody else was involved. 

We fixed the false reports on our Solo server by adding this:

if (privilege.IsAuthed(player)
{
return null;
}

In the OnCupboardAuthorize part. Line 173.

Hope it helps people with the same problem.