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?