Failed compiling 'ComponentBlocker.cs':
1. Cannot implicitly convert type 'Facepunch.StringView' to 'string'. An explicit conversion exists (are you missing a cast?) [CS0266]
(ComponentBlocker 31 line 224) Broken after server updateSolved
Confirming -fail to compile.
The staging update changed ConsoleSystem.Arg.Args to use Facepunch.StringView instead of string.
On line 224 in your file, change:
string name = arg.Args[0];to:
string name = arg.Args[0].ToString();Perfect thanks!