FBT action changes when you hit 80.

This commit is contained in:
attickdoor 2019-12-20 15:46:01 -05:00
parent 59ca9330fd
commit d6d2732191

View file

@ -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;
}
}