You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mod fails to load, outputs "Script named 'npc_morphsummon' is not assigned in the database." in WorldServer. Investigation reveals four target columns, "modelid1" to "modelid4", present in morphsummon.sql but not the creature_template table, causing the query to fail.
Expected Behaviour
Mod should load normally. I removed the four columns and created an appropriate query for the creature_template_model table (DisplayID might be wrong).
DELETE FROM `creature_template_model` WHERE `CreatureId` IN (@ENTRY); INSERT INTO `creature_template_model` ( `CreatureID`, `Idx`, `CreatureDisplayID`, `DisplayScale`, `Probability`, `VerifiedBuild`) VALUES (601072, 0, 15665, 1, 1, 1);
Steps to reproduce the problem
Load latest version of mod in AzerothCore ee8c103d3d9b
Extra Notes
No response
AC rev. hash/commit
ee8c103d3d9b
Operating system
Debian 12
Custom changes or Modules
No response
The text was updated successfully, but these errors were encountered:
Current Behaviour
Mod fails to load, outputs "Script named 'npc_morphsummon' is not assigned in the database." in WorldServer. Investigation reveals four target columns, "modelid1" to "modelid4", present in morphsummon.sql but not the creature_template table, causing the query to fail.
Expected Behaviour
Mod should load normally. I removed the four columns and created an appropriate query for the creature_template_model table (DisplayID might be wrong).
DELETE FROM `creature_template_model` WHERE `CreatureId` IN (@ENTRY); INSERT INTO `creature_template_model` ( `CreatureID`, `Idx`, `CreatureDisplayID`, `DisplayScale`, `Probability`, `VerifiedBuild`) VALUES (601072, 0, 15665, 1, 1, 1);
Steps to reproduce the problem
Load latest version of mod in AzerothCore ee8c103d3d9b
Extra Notes
No response
AC rev. hash/commit
ee8c103d3d9b
Operating system
Debian 12
Custom changes or Modules
No response
The text was updated successfully, but these errors were encountered: