mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/DataStores: Fixed SpellLabelEntry structure
This commit is contained in:
1
sql/updates/hotfixes/master/2021_06_05_00_hotfixes.sql
Normal file
1
sql/updates/hotfixes/master/2021_06_05_00_hotfixes.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE `spell_label` MODIFY `SpellID` int(10) unsigned NOT NULL DEFAULT '0';
|
||||
@@ -5134,7 +5134,7 @@ struct SpellLabelLoadInfo
|
||||
{
|
||||
{ false, FT_INT, "ID" },
|
||||
{ false, FT_INT, "LabelID" },
|
||||
{ true, FT_INT, "SpellID" },
|
||||
{ false, FT_INT, "SpellID" },
|
||||
};
|
||||
static DB2LoadInfo const loadInfo(&fields[0], std::extent<decltype(fields)>::value, SpellLabelMeta::Instance(), HOTFIX_SEL_SPELL_LABEL);
|
||||
return &loadInfo;
|
||||
|
||||
@@ -3076,7 +3076,7 @@ struct SpellLabelEntry
|
||||
{
|
||||
uint32 ID;
|
||||
uint32 LabelID;
|
||||
int32 SpellID;
|
||||
uint32 SpellID;
|
||||
};
|
||||
|
||||
struct SpellLearnSpellEntry
|
||||
|
||||
Reference in New Issue
Block a user