mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-07 05:35:41 +12:00
Fix minor issue where the game crashes whenever anyone logs in
This commit is contained in:
parent
d19bb91550
commit
e04f549b11
1 changed files with 1 additions and 1 deletions
|
@ -4024,7 +4024,7 @@ namespace HISP.Server
|
|||
db.Open();
|
||||
MySqlCommand sqlCommand = db.CreateCommand();
|
||||
|
||||
sqlCommand.CommandText = "INSERT INTO OnlineUsers VALUES(@playerId, @admin, @moderator, @new)";
|
||||
sqlCommand.CommandText = "INSERT INTO OnlineUsers VALUES(@playerId, @admin, @moderator, @subscribed, @new)";
|
||||
sqlCommand.Parameters.AddWithValue("@playerId", playerId);
|
||||
sqlCommand.Parameters.AddWithValue("@admin", Admin ? "YES" : "NO");
|
||||
sqlCommand.Parameters.AddWithValue("@moderator", Moderator ? "YES" : "NO");
|
||||
|
|
Loading…
Add table
Reference in a new issue