Merge branch 'master' into mail_server_template_items
This commit is contained in:
commit
591b5fc61f
@ -234,7 +234,7 @@ def backtick_check(file: io, file_path: str) -> None:
|
||||
# Skip SQL keywords
|
||||
if word.upper() in {"SELECT", "FROM", "JOIN", "WHERE", "GROUP", "BY", "ORDER",
|
||||
"DELETE", "UPDATE", "INSERT", "INTO", "SET", "VALUES", "AND",
|
||||
"IN", "OR", "REPLACE"}:
|
||||
"IN", "OR", "REPLACE", "NOT"}:
|
||||
continue
|
||||
|
||||
# Make sure the word is enclosed in backticks
|
||||
|
||||
3
data/sql/updates/db_world/2025_02_24_00.sql
Normal file
3
data/sql/updates/db_world/2025_02_24_00.sql
Normal file
@ -0,0 +1,3 @@
|
||||
-- DB update 2025_02_22_00 -> 2025_02_24_00
|
||||
--
|
||||
UPDATE `creature_template` SET `flags_extra` = `flags_extra`|512|2147483648 WHERE `entry` = 25038;
|
||||
@ -172,10 +172,10 @@ void World::LoadConfigSettings(bool reload)
|
||||
LOG_ERROR("server.loading", "World settings reload fail: can't read settings.");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
sLog->LoadFromConfig();
|
||||
sMetric->LoadFromConfigs();
|
||||
sLog->LoadFromConfig();
|
||||
sMetric->LoadFromConfigs();
|
||||
}
|
||||
|
||||
// Set realm id and enable db logging
|
||||
sLog->SetRealmId(realm.Id.Realm);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user