From d6d2732191075768ae698861dde479033dbe8a85 Mon Sep 17 00:00:00 2001 From: attickdoor Date: Fri, 20 Dec 2019 15:46:01 -0500 Subject: [PATCH] FBT action changes when you hit 80. --- Dalamud/Game/Internal/Gui/IconReplacer.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dalamud/Game/Internal/Gui/IconReplacer.cs b/Dalamud/Game/Internal/Gui/IconReplacer.cs index 3d3b9f660..abd26bdfb 100644 --- a/Dalamud/Game/Internal/Gui/IconReplacer.cs +++ b/Dalamud/Game/Internal/Gui/IconReplacer.cs @@ -501,7 +501,10 @@ namespace Dalamud.Game.Internal.Gui { } else { if (gauge.IsBahamutReady()) return 7427; - if (gauge.IsPhoenixReady()) return 16513; + if (gauge.IsPhoenixReady()) { + if (level == 80) return 16549; + return 16513; + } return 3581; } }