From 4ed84e7ae422b9acb5e19ab5d833a7f3373b524b Mon Sep 17 00:00:00 2001 From: hondacrx Date: Mon, 22 Feb 2021 21:08:07 -0500 Subject: [PATCH] Core/AuraEffect: Fix crash when missing a auraeffect handler. --- Source/Game/Spells/Auras/AuraEffect.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/Game/Spells/Auras/AuraEffect.cs b/Source/Game/Spells/Auras/AuraEffect.cs index 4b7057935..68c6cad46 100644 --- a/Source/Game/Spells/Auras/AuraEffect.cs +++ b/Source/Game/Spells/Auras/AuraEffect.cs @@ -961,6 +961,11 @@ namespace Game.Spells /**************************************/ /*** VISIBILITY & PHASES ***/ /**************************************/ + [AuraEffectHandler(AuraType.None)] + void HandleUnsued(AuraApplication aurApp, AuraEffectHandleModes mode, bool apply) + { + } + [AuraEffectHandler(AuraType.ModInvisibilityDetect)] void HandleModInvisibilityDetect(AuraApplication aurApp, AuraEffectHandleModes mode, bool apply) {