Error when trying to list playersSolved
var online = BasePlayer.activePlayerList as List<BasePlayer>;
            foreach (BasePlayer bplayer in online)

creating a player list gives a compile error

 Error while compiling: NooBhub.cs(213,54): error CS0039: Cannot convert type `ListHashSet<BasePlayer>' to `System.Collections.Generic.List<BasePlayer>' via a built-in conversion

any workaround now after update?

because you dont have to use as here, just foreach theres no need for it to be a list.
Change it to:
foreach (BasePlayer bplayer in BasePlayer.activePlayerList)​
seemed to work thanks @Zugzwang and im kicking my self for not calling the activeplayerlist direct instead of creating a list .....feeling like an idiot

Merged post

o my word didnt see @misticos reply im so sorry my dude its been a ruff day im my server trying to get all to work and having 50 ppl down my DM's complaining .... im sorry THANK YOU SO MUCH
Locked automatically