Fixes casting, default parameters and null propogation in more files.

This commit is contained in:
Kamron Batman 2018-09-09 22:05:44 -07:00
parent 067dca8393
commit 403e2a8b9d
21 changed files with 328 additions and 523 deletions

View file

@ -216,9 +216,7 @@ namespace Server.Misc
op.Write( "+ {0}:", state );
Account a = state.Account as Account;
if ( a != null )
if ( state.Account is Account a )
op.Write( " (account = {0})", a.Username );
Mobile m = state.Mobile;