From 1bc78306b816cd687690576854bfd76eb8ec1048 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Sun, 22 Jun 2025 18:46:51 -0400 Subject: [PATCH] Temp is depleted logic --- .../Parts/HighlightsComponent.razor | 21 ----------- Model/Entity/Data/DATA.cs | 10 +++--- Model/Entity/Parts/EntityHarvestModel.cs | 7 ++-- Services/IServices.cs | 2 +- Services/Immortal/BuildOrderService.cs | 11 ++++-- Services/Immortal/EconomyService.cs | 35 ++++++++++--------- 6 files changed, 37 insertions(+), 49 deletions(-) diff --git a/IGP/Pages/BuildCalculator/Parts/HighlightsComponent.razor b/IGP/Pages/BuildCalculator/Parts/HighlightsComponent.razor index 5c9c414..be65a80 100644 --- a/IGP/Pages/BuildCalculator/Parts/HighlightsComponent.razor +++ b/IGP/Pages/BuildCalculator/Parts/HighlightsComponent.razor @@ -42,27 +42,6 @@ } } - -
-
Depleted
- //TODO WIP - - @foreach (var ordersAtTime in buildOrderService.CompletedOrders.Reverse()) - { - foreach (var order in ordersAtTime.Value) - { -
- - @ordersAtTime.Key | T @Interval.ToTime(ordersAtTime.Key) -
-
- @order.Info().Name -
-
- } - } -
-