Browse Source

more sql_updates.sql table filters

removed character_ tables, variables, char_colors, guild_ and bugs
Image 4 years ago
parent
commit
ed7d7f73ae
1 changed files with 1 additions and 1 deletions
  1. 1 1
      EQ2/source/common/database.cpp

+ 1 - 1
EQ2/source/common/database.cpp

@@ -217,7 +217,7 @@ MYSQL_RES* Query::RunQuery2(string in_query, QUERY_TYPE type){
 #if defined WORLD && defined _DEBUG
 	if (type == Q_UPDATE || type == Q_INSERT || type == Q_DELETE || type == Q_REPLACE)
 	{
-		char* filteredTables[] = { " characters", " character_", " statistics", " variables", "`guilds`" };
+		char* filteredTables[] = { " characters", " character_", " `character_", " statistics", " variables", " char_colors", " `guild_", " bugs" };
 
 		bool match = false;
 		for (int i = 0; i < sizeof(filteredTables) / sizeof(filteredTables[0]); i++)