Core/Misc: Fixes

DB: Lots of DB fixes
This commit is contained in:
hondacrx
2018-06-09 12:03:02 -04:00
parent 2d2a9eac16
commit 1289bc3ed1
38 changed files with 53938 additions and 11 deletions
+1 -1
View File
@@ -341,7 +341,7 @@ namespace Game.Chat
string name = args.NextString();
string level = args.NextString();
if (string.IsNullOrEmpty(type) || string.IsNullOrEmpty(name) || string.IsNullOrEmpty(level) || name.IsEmpty() || level.IsEmpty() || (type[0] != 'a' && type[0] != 'l'))
if (type.IsEmpty() || name.IsEmpty() || level.IsEmpty() || (type[0] != 'a' && type[0] != 'l'))
return false;
return Log.SetLogLevel(name, level, type[0] == 'l');