From 35ed94bf9765ef82c2daae57c1d5bf57546c86c1 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Mon, 1 Mar 2021 11:03:59 -0500 Subject: [PATCH] Core/DB: Missed one extra port in address string for DB. --- Source/Game/Networking/WorldSocket.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Game/Networking/WorldSocket.cs b/Source/Game/Networking/WorldSocket.cs index fb9cd82dd..f97c65ae0 100644 --- a/Source/Game/Networking/WorldSocket.cs +++ b/Source/Game/Networking/WorldSocket.cs @@ -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);