From 7ac0861c98b1b6a3f526fb51e46343c279627483 Mon Sep 17 00:00:00 2001 From: Emagi Date: Tue, 28 Jun 2022 19:43:49 -0400 Subject: [PATCH] missed a end ) for one of the starting language queries --- EQ2/source/WorldServer/WorldDatabase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EQ2/source/WorldServer/WorldDatabase.cpp b/EQ2/source/WorldServer/WorldDatabase.cpp index 57eec0517..b81032efe 100644 --- a/EQ2/source/WorldServer/WorldDatabase.cpp +++ b/EQ2/source/WorldServer/WorldDatabase.cpp @@ -8039,7 +8039,7 @@ void WorldDatabase::UpdateStartingLanguage(int32 char_id, uint8 race_id, int32 s } //if we have a starting city supplied, and the rule is set to use it, deal with it else if(rule == 1) { - query_string.append("WHERE starting_city=" + std::to_string(starting_city) + " or (starting_city=0 and race_id=" + std::to_string(race_id)); + query_string.append("WHERE starting_city=" + std::to_string(starting_city) + " or (starting_city=0 and race_id=" + std::to_string(race_id) + ")"); } Query query;