Fixes null propogation

This commit is contained in:
Kamron Batman 2018-09-14 13:49:23 -07:00
parent 22ab83ea9e
commit 3c9842ee5a
218 changed files with 799 additions and 1458 deletions

View file

@ -101,10 +101,7 @@ namespace Server.Gumps
Gump parent = Parent;
if ( parent != null )
{
parent.Invalidate();
}
parent?.Invalidate();
}
}
}