Jump to content
Message added by Khan,

Anyone having BP duplication issues is not a direct result of this plugin.
It's due to a plugin you are running that kills the player OnDisconnected too early, resulting in the duplication occurring.
To fix, find the plugin and wrap the player.Die(); call in a NextFrame.

        private void OnPlayerDisconnected(BasePlayer player)
        {
            NextFrame(() =>
            {
                if (player == null)
                    return;
                player.Die();
            });
        }

 


User Feedback

1.1m

Downloads

Total number of downloads.

5.6k

Customers

Total customers served.

80.8k

Files Sold

Total number of files sold.

1.6m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.