Remove rlvl/clvl propaganda

This commit is contained in:
Asriel Camora
2024-06-30 18:58:14 -07:00
parent 2c0978f76b
commit 4dffebf0bd
11 changed files with 5 additions and 55 deletions
+1 -5
View File
@@ -487,8 +487,6 @@ public sealed unsafe class RecipeNote : Window, IDisposable
if (level != 0)
{
ImGui.TextUnformatted(levelText);
if (ImGui.IsItemHovered())
ImGuiUtils.Tooltip($"CLvl {Gearsets.CalculateCLvl(level)}");
ImGui.SameLine(0, 3);
}
@@ -684,8 +682,6 @@ public sealed unsafe class RecipeNote : Window, IDisposable
ImGui.SameLine(0, 5);
ImGui.TextUnformatted(textLevel);
if (ImGui.IsItemHovered())
ImGuiUtils.Tooltip($"RLvl {RecipeData.RecipeInfo.RLvl}");
if (textStarsSize != Vector2.Zero)
{
@@ -1202,7 +1198,7 @@ public sealed unsafe class RecipeNote : Window, IDisposable
var config = Service.Configuration.RecipeNoteSolverConfig;
var mctsConfig = new MCTSConfig(config);
var simulator = new SimulatorNoRandom();
var macros = Service.CommunityMacros.RetrieveRotations(input.Recipe.RLvl, token).GetAwaiter().GetResult();
var macros = Service.CommunityMacros.RetrieveRotations((int)RecipeData.Table.RowId, token).GetAwaiter().GetResult();
token.ThrowIfCancellationRequested();