How would one create local console command? I see ConsoleCommand attribute, but it doesn't seem to work. Maybe there is different method arugments are needed for console command specificly? This is a few ways I tried to register it, and none of them work
[ConsoleCommand("runcompression")]
private void RunCompressionMigration(IPlayer player, string command, string[] args)
{
//
}
[Command("runcompression1")]
private void RunCompressionMigration1(IPlayer player, string command, string[] args)
{
//
}Having IPlayer in console command does look weird though