Fix some crashes

This commit is contained in:
SilicaAndPina 2021-06-02 17:57:56 +12:00
parent 197dc53270
commit 323d5f4408
4 changed files with 6 additions and 9 deletions

View file

@ -5060,7 +5060,7 @@ namespace HISP.Server
using (MySqlConnection db = new MySqlConnection(ConnectionString))
{
db.Open();
if (CheckUserExist(id))
if (CheckUserExtExists(id))
{
MySqlCommand sqlCommand = db.CreateCommand();
sqlCommand.CommandText = "UPDATE UserExt SET Money=@money WHERE Id=@id";