Fixes more casting and other formatting issues.

This commit is contained in:
Kamron Batman 2018-08-19 10:14:40 +08:00
parent 03dd5f1926
commit 61937d9c97
67 changed files with 325 additions and 570 deletions

View file

@ -162,9 +162,9 @@ namespace Server.Engines.MyRunUO
}
}
}
else if ( obj is string )
else if ( obj is string s )
{
command.CommandText = (string)obj;
command.CommandText = s;
command.ExecuteNonQuery();
}
else
@ -199,4 +199,4 @@ namespace Server.Engines.MyRunUO
}
}
}
}
}