This commit is contained in:
南沢响也
2025-12-17 23:57:46 +08:00
parent b121c8e574
commit ae5e63075b
3 changed files with 40 additions and 6 deletions

View File

@@ -22,13 +22,13 @@ using FFXIVClientStructs.FFXIV.Client.Game.UI;
namespace PVPAction;
[ScriptType(guid: "070e161a-26e9-4a57-8b19-da8c4201058c", name: "PVP技能绘制", territorys: [],
version: "0.0.0.1", author: "Tetora", note: noteStr)]
version: "0.0.0.2", author: "Tetora", note: noteStr)]
public class PVPTAction
{
const string noteStr =
"""
v0.0.0.1:
v0.0.0.2:
PVP技能绘制
x
@@ -816,5 +816,5 @@ public static class ActionExt
}
public static bool IsSpellReady(this uint spellId) => IsReadyWithCanCast(spellId, ActionType.Action);
public static bool IsAbilityReady(this uint abilityId) => IsReadyWithCanCast(abilityId, ActionType.Ability);
// public static bool IsAbilityReady(this uint abilityId) => IsReadyWithCanCast(abilityId, EventAction.Ability);
}