We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6f3d9d commit cb93628Copy full SHA for cb93628
1 file changed
src/scripts/spells/spell_special.cpp
@@ -339,6 +339,10 @@ struct SilithystAuraScript : public AuraScript
339
340
void OnAfterApply(Aura* aura, bool apply) final
341
{
342
+ // Silithyst PvP was added in patch 1.12, FORCE_REACTION effect on INDEX_1
343
+#if SUPPORTED_CLIENT_BUILD < CLIENT_BUILD_1_12_1
344
+ return;
345
+#endif
346
if (aura->GetEffIndex() != EFFECT_INDEX_1)
347
return;
348
0 commit comments