Skip to content

Commit

Permalink
rebase and cleanup tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Eein committed Apr 3, 2022
1 parent 6a2e33e commit 385b045
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions octopath.asl
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ init {
// Stole this from FF13 Autosplitter, thanks Roosta :)
// Might be better implementation possible
foreach (LiveSplit.UI.Components.IComponent component in timer.Layout.Components) {
if (component.GetType().Name == "TextComponent") {
if (settings["encounter_death_counter"] == true & vars.counterTextComponent == -1) {
if (component.GetType().Name == "TextComponent") {
if (settings["encounter_death_counter"] == true & vars.counterTextComponent == -1) {
vars.counterTextComponent = component;
vars.counterTextComponent.Settings.Text1 = "Encounters / Deaths";
vars.UpdateCounter();
}
}
}
}
}

Expand Down Expand Up @@ -741,4 +741,4 @@ split {
else if (current.zoneID == 194 && current.money - old.money == 100000) {
return vars.Split("at_journeys_end");
}
}
}

0 comments on commit 385b045

Please sign in to comment.