diff --git a/Source/Framework/Constants/PlayerConst.cs b/Source/Framework/Constants/PlayerConst.cs index 5282f23cd..edbf6facc 100644 --- a/Source/Framework/Constants/PlayerConst.cs +++ b/Source/Framework/Constants/PlayerConst.cs @@ -398,7 +398,7 @@ namespace Framework.Constants Unk20 = 0x100000, Unk21 = 0x200000, Commentator2 = 0x400000, - AllowOnlyAbility = 0x800000, + HidAccountAchievements = 0x800000, PetBattlesUnlocked = 0x1000000, NoXPGain = 0x2000000, Unk26 = 0x4000000, diff --git a/Source/WorldServer/WorldServer.conf.dist b/Source/WorldServer/WorldServer.conf.dist index d63d47b68..6537f821d 100644 --- a/Source/WorldServer/WorldServer.conf.dist +++ b/Source/WorldServer/WorldServer.conf.dist @@ -658,7 +658,8 @@ DeclinedNames = 0 # Expansion # Description: Allow server to use content from expansions. Checks for expansion-related # map files, client compatibility and class/race character creation. -# Default: 7 - (Expansion 7) +# Default: 8 - (Expansion 8) +# 7 - (Expansion 7) # 6 - (Expansion 6) # 5 - (Expansion 5) # 4 - (Expansion 4) @@ -667,7 +668,7 @@ DeclinedNames = 0 # 1 - (Expansion 1) # 0 - (Disabled, Ignore and disable expansion content (maps, races, classes) -Expansion = 7 +Expansion = 8 # # MinPlayerName diff --git a/sql/updates/world/master/2021_02_18_00_world_fingers_of_frost_proc_attributes.sql b/sql/updates/world/master/2021_02_18_00_world_fingers_of_frost_proc_attributes.sql new file mode 100644 index 000000000..037e3eb24 --- /dev/null +++ b/sql/updates/world/master/2021_02_18_00_world_fingers_of_frost_proc_attributes.sql @@ -0,0 +1,3 @@ +UPDATE `spell_proc` SET `AttributesMask`=`AttributesMask`|0x10 WHERE `SpellId`=44544; + +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_mage_fingers_of_frost'; diff --git a/sql/updates/world/master/2021_02_21_00_world_priest_prayer_of_mending.sql b/sql/updates/world/master/2021_02_21_00_world_priest_prayer_of_mending.sql new file mode 100644 index 000000000..21fe90c99 --- /dev/null +++ b/sql/updates/world/master/2021_02_21_00_world_priest_prayer_of_mending.sql @@ -0,0 +1,5 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_pri_prayer_of_mending_heal','spell_pri_prayer_of_mending','spell_pri_prayer_of_mending_aura','spell_pri_prayer_of_mending_jump'); +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES +(33076, 'spell_pri_prayer_of_mending'), +(41635, 'spell_pri_prayer_of_mending_aura'), +(155793, 'spell_pri_prayer_of_mending_jump');