Fix crashing on Linux

This commit is contained in:
SilicaAndPina 2021-03-10 15:35:53 +13:00
parent dcd9b85922
commit 1acba870c6
2 changed files with 3 additions and 3 deletions

View file

@ -216,7 +216,7 @@
"fountain":"Although it's not recommended, you could drink from this fountain if you are thirsty...^T6Drink from the public fountain. ^B1D^R1^X^Z",
"venus_flytrap_format":"The Giant Venus Flytrap chomped at you!<BR><B>OUCH!!</B><BR>It chomped your pocket, taking $%MONEY% with it!!",
"password_input":"<BR>^PLReply:|^PS14|ANSWER^R1",
"last_poet":"^R1^LLast Player Poet:%USERNAME% ^R1",
"last_poet":"^LLast Player Poet:%USERNAME% ^R1",
"hammock":"You and all of your horses have fully rested.",
"player_interaction":{
"players_here":"<B>Players Here:</B>",
@ -551,7 +551,7 @@
"no_money":"You cannot afford the workshop's fee!"
},
"drawing_rooms":{
"last_draw":"^R1^LLast Player to Draw:%USERNAME% ^R1",
"last_draw":"^LLast Player to Draw:%USERNAME% ^R1",
"saved":"Current contents of the Drawing Room saved in your slot #%SLOT%.",
"load":"Current contents of the Drawing Room loaded from your slot #%SLOT%.",
"plz_clear_load":"Drawing room memory is full. Please CLEAR to start a new drawing.",

View file

@ -4878,7 +4878,7 @@ namespace HISP.Server
db.Open();
MySqlCommand sqlCommand = db.CreateCommand();
sqlCommand.CommandText = "SELECT DISTINCT playerId, SUM(timesplayed) OVER (PARTITION BY playerId) AS totalPlays FROM leaderboards ORDER BY totalPlays DESC LIMIT 25";
sqlCommand.CommandText = "SELECT DISTINCT playerId, SUM(timesplayed) OVER (PARTITION BY playerId) AS totalPlays FROM Leaderboards ORDER BY totalPlays DESC LIMIT 25";
sqlCommand.Prepare();
MySqlDataReader reader = sqlCommand.ExecuteReader();
while (reader.Read())