Compare commits

...

3 Commits

Author SHA1 Message Date
ZhengPeiRu21
2c95abb08b Merge pull request #37 from ManGuyNY/master
Fix build
2022-11-07 13:18:15 -07:00
ManGuyNY
5d7077bf48 Fix build
Fix build after 5a7822282f
2022-11-05 20:39:35 -04:00
ZhengPeiRu21
1a37c250cc Update README.md 2022-10-26 15:50:10 -06:00
2 changed files with 3 additions and 2 deletions

View File

@@ -40,3 +40,4 @@ Special thanks to all contributors of the following projects which are make this
* Wrath of the Vanilla Module for more Vanilla world adjustments * Wrath of the Vanilla Module for more Vanilla world adjustments
* Vmangos for Vanilla game and patch progression data * Vmangos for Vanilla game and patch progression data
* SoglaHash for many Naxx 40 scripts and data * SoglaHash for many Naxx 40 scripts and data
* 55Honey for Acore_ZoneDebuff module, used as basis for damage and HP scaling

View File

@@ -114,7 +114,7 @@ public:
void UpdateAI(uint32 diff) override void UpdateAI(uint32 diff) override
{ {
if (!sWorld->getBoolConfig(CONFIG_WINTERGRASP_ENABLE)) if (sWorld->getIntConfig(CONFIG_WINTERGRASP_ENABLE) == 2)
return; return;
ScriptedAI::UpdateAI(diff); ScriptedAI::UpdateAI(diff);
@@ -164,4 +164,4 @@ public:
void AddSC_Ipp_Wotlk_Modded_Scripts() void AddSC_Ipp_Wotlk_Modded_Scripts()
{ {
new npc_wg_queue_ipp(); new npc_wg_queue_ipp();
} }