fix: Fixes vendor OPL (#672)

This commit is contained in:
Kamron Batman 2021-08-03 00:34:44 -07:00 committed by GitHub
parent 3dc406624e
commit b112be4e1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 94 additions and 115 deletions

View file

@ -109,7 +109,7 @@ namespace Server.Commands.Generic
public void Acquire(TypeBuilder typeBuilder, ILGenerator il, string fieldName)
{
if (!(Value is string toParse))
if (Value is not string toParse)
{
return;
}