IntelliSense can't find BasePlayer.IPlayerSolved

Hello! I noticed all of a sudden that IntelliSense is no longer showing the IPlayer interface in BasePlayer.

For the sake of testing, I have referenced all of the DLLs in the vanilla Rust Managed folder as well as the Oxide DLLs.

In Visual Studio 2019:

        private object OnPlayerChat(BasePlayer bPlayer, string message, Chat.ChatChannel channel)
        {

            IPlayer player = bPlayer.IPlayer;
            
            return true;
        }​

bPlayer.IPlayer throws an error saying:
"BasePlayer does not contain a definition for 'IPlayer' and no accessible extension method 'IPlayer' accepting a first argument of type 'BasePlayer' could be found."

Is there a specific reference assembly I am missing?

BasePlayer.IPlayer would only be available if you reference the patched Assembly-CSharp.dll from Oxide downloads. You should only be referrencing the patched versions that overlap, not vanilla.

Wulf with the save like always. Thanks. :)

Locked automatically