diff --git a/AATool/UI/Controls/UIRunComplete.cs b/AATool/UI/Controls/UIRunComplete.cs index 6c3c647..69511c7 100644 --- a/AATool/UI/Controls/UIRunComplete.cs +++ b/AATool/UI/Controls/UIRunComplete.cs @@ -294,14 +294,14 @@ public void Show() this.statsMisc.Append($"Save & Quits: {prog.SaveAndQuits}\n"); */ - int temples = (state.TimesMined("minecraft:tnt") / 9); + int temples = state.TimesMined("minecraft:tnt") / 9; int fish = state.TimesKilled("minecraft:cod") + state.TimesKilled("minecraft:salmon"); this.First("flown").SetText(space + state.KilometersFlown); this.First("bread").SetText(space + state.TimesUsed("minecraft:bread")); this.First("enchants").SetText(space + state.ItemsEnchanted); this.First("pearls").SetText(space + state.TimesUsed("minecraft:ender_pearl")); - this.First("temples").SetText(space + fish); + this.First("temples").SetText(space + temples); this.First("creepers").SetText(space + state.TimesKilled("minecraft:creeper")); this.First("drowned").SetText(space + state.TimesKilled("minecraft:drowned"));