fix(Core/Misc): Fix NextPage Data Type in PageText Structure and Improve Logging Messages (#21586)

This commit is contained in:
Kitzunu
2025-02-23 01:58:21 +01:00
committed by GitHub
parent d97563be44
commit 5d32676193
3 changed files with 7 additions and 3 deletions

View File

@@ -5848,7 +5848,11 @@ void ObjectMgr::LoadPageTextLocales()
QueryResult result = WorldDatabase.Query("SELECT ID, locale, Text FROM page_text_locale");
if (!result)
{
LOG_WARN("server.loading", ">> Loaded 0 page texts. DB table `page_text_locale` is empty!");
LOG_INFO("server.loading", " ");
return;
}
do
{
@@ -5876,7 +5880,7 @@ void ObjectMgr::LoadInstanceTemplate()
if (!result)
{
LOG_WARN("server.loading", ">> Loaded 0 instance templates. DB table `page_text` is empty!");
LOG_WARN("server.loading", ">> Loaded 0 instance templates. DB table `instance_template` is empty!");
LOG_INFO("server.loading", " ");
return;
}