Core/DB: Missed one extra port in address string for DB.

This commit is contained in:
hondacrx
2021-03-01 11:03:59 -05:00
parent 0e679fe1ab
commit 35ed94bf97
+1 -1
View File
@@ -636,7 +636,7 @@ namespace Game.Networking
// Update the last_ip in the database
stmt = DB.Login.GetPreparedStatement(LoginStatements.UPD_LAST_IP);
stmt.AddValue(0, address);
stmt.AddValue(0, address.Address.ToString());
stmt.AddValue(1, authSession.RealmJoinTicket);
DB.Login.Execute(stmt);