Browse Source

missed a end ) for one of the starting language queries

Emagi 1 year ago
parent
commit
7ac0861c98
1 changed files with 1 additions and 1 deletions
  1. 1 1
      EQ2/source/WorldServer/WorldDatabase.cpp

+ 1 - 1
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;