Skip to content

Commit

Permalink
[PUSH] 2.0.0.12 - ADV fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MKhayle committed Aug 16, 2024
1 parent c4e27c2 commit b0a5dd0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion XIVComboExpanded/Combos/ADV.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
(actionID == SGE.Egeiro && level >= SGE.Levels.Egeiro) ||
(actionID == WHM.Raise && level >= WHM.Levels.Raise))
{
if (level >= ADV.Levels.Swiftcast && CanUseAction(ADV.Swiftcast))
if (level >= ADV.Levels.Swiftcast && CanUseAction(ADV.Swiftcast) && IsCooldownUsable(ADV.Swiftcast))
return ADV.Swiftcast;
}

Expand Down
8 changes: 7 additions & 1 deletion XIVComboExpanded/Interface/Changelog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ public static Dictionary<string, string[]> GetChangelog()
{
return new Dictionary<string, string[]>()
{
{
"v2.0.0.12",
[
"Fixed ADV's Swift Raise Feature. Sorry about that!"
]
},
{
"v2.0.0.11",
[
Expand All @@ -20,7 +26,7 @@ public static Dictionary<string, string[]> GetChangelog()
"Added the English name of skills when icons are hovered if you're not using an English client.",
"Added the level at which a skill is learnt after the skill's name.",
"Added additional checks for the auto-selection settings to prevent background issues.",
"Fixed Silent Peloton checking if you were in combat instead of out of combat.",
"Fixed ADV's Silent Peloton checking if you were in combat instead of out of combat.",
"Fixed VPR's Serpent's Ire on Reawaken replacing every button.",
"Added VPR level check for Auto Steel Reaving's Reaving Maw.",
"Added VPR checks to determine whether oGCDs can be used or not to prevent No Abilities in Deep Dungeons to lock you in unusable skills."
Expand Down
1 change: 0 additions & 1 deletion XIVComboExpanded/Interface/ConfigWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
using Dalamud.Utility;
using ImGuiNET;
using Lumina.Excel.GeneratedSheets;
using Newtonsoft.Json.Linq;
using XIVComboExpandedPlugin.Attributes;
using XIVComboExpandedPlugin.Combos;
using Action = Lumina.Excel.GeneratedSheets.Action;
Expand Down
2 changes: 1 addition & 1 deletion XIVComboExpanded/XIVComboExpanded.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Authors>attick, daemitus, Khayle</Authors>
<Company>-</Company>
<Version>2.0.0.11</Version>
<Version>2.0.0.12</Version>
<Description>This plugin condenses combos and mutually exclusive abilities onto a single button.</Description>
<Copyright>Copyleft attick 2020 baybeeee</Copyright>
<PackageProjectUrl>https://github.com/daemitus/XIVComboPlugin</PackageProjectUrl>
Expand Down

0 comments on commit b0a5dd0

Please sign in to comment.