Release 1.2.0.0

This commit is contained in:
waynebian01
2026-06-19 23:29:19 +08:00
parent d487408944
commit 2be6bbf168
15 changed files with 3183 additions and 21 deletions

View File

@@ -1187,6 +1187,11 @@ public static class ModuleConditionEvaluator
return state.Auras.TryGetValue(key["aura.".Length..], out var value) ? value : null;
}
if (RecognizedAuraFields.TryGetName(key, out var recognizedAuraName))
{
return state.RecognizedAuras.TryGetValue(recognizedAuraName, out var value) ? value : 0;
}
if (ModuleSpecialActions.IsFailedSpell(key))
{
return ModuleSpecialActions.GetFailedSpell(state, failedSpells);