Purge doesn't seem to be working
Hey Fuji,

I noticed at the beginning of the wipe the purge wasn't removing any entities. I thought nothing of it at the time and assumed the purge timer hadn't been reached. But now, nearly three weeks into the wipe, no players or their entities are being removed. These damn updates ey? Could you look into this please, I'm not a huge fan of 630k entities.. ;)

Cheers,
-Zilch
Push!
After the last rust update, the plugin stopped working. I have about 50-70 inactive players and still that message:
"(09:49:16) | [AutoPurge] Included entity count on this run: 10710

(09:49:16) | [AutoPurge] Nothing to remove... up to date."

The users getting removed from the AutoPurge data file, but the entities are still there :c

(I removed about 80k entities on my own with a small script...)

 [ConsoleCommand("removeallshit")]
        private void removeallshit()
        {

            List <BasePlayer> listplayer = BasePlayer.activePlayerList.ToList();

            ConsoleNetwork.BroadcastToAllClients("chat.add", 76561198836163838, string.Format($"Killing ~{BaseNetworkable.serverEntities.ToList().Count()} entites!"), 1.0);
            ConsoleNetwork.BroadcastToAllClients("chat.add", 76561198836163838, string.Format($"Server may lag/ crash!!"), 1.0);
            foreach (BaseEntity p in BaseNetworkable.serverEntities.ToList())
            {
                timer.Once(0.05f, () => // Prevent request flooding
                {
                    if (permission.UserHasPermission(p.OwnerID.ToString(), "autopurge.exclude")) return;
                    foreach(var player in listplayer)
                    {
                        if (p.OwnerID == player.userID) return;
                    }
                    p.Kill();

                });
                
            }
        }
Thought it was just me. I can also say this plugin is no longer working

(11:05:53) | [AutoPurge] Included entity count on this run: 31393

(11:05:53) | [AutoPurge] Removing: 398 entities from: 3 inactive players

(11:05:53) | [AutoPurge] Affected IDs: HellViper(76561198239052984) Clockwork Kitten✨(76561198033111049) hecticlord Skinhub.com(76561198239367312)

Working brilliantly here?

In response to LoneWolfAU ():
(11:05:53) | [AutoPurge] Included entity count on this run: 31393(11:05:53) | [AutoPurge] Removing:...
I noticed yesterday (and this was for the first time since I created this post) that it did purge. So I posted a screenshot on the uMod discord as a few admins had been talking about it only to be told, it does run but it's not actually removing any entities. So maybe it is working, maybe it's not.
I'll check my server as I know exactly where one of those purged bases was located. Will report back. 

Merged post

It's gone, as well as the other 2. So it appears it does work?