Update MarketBoardSelfTestStep.cs (#2309)

Use correct time offset from the game display in the test text.
This commit is contained in:
wolfcomp 2025-08-04 03:26:58 +02:00 committed by GitHub
parent 5426cfc723
commit 7131ad36a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -59,7 +59,7 @@ internal class MarketBoardSelfTestStep : ISelfTestStep
ImGui.Text($"Quantity: {this.historyListing.Quantity.ToString()}");
ImGui.Text($"Buyer: {this.historyListing.BuyerName}");
ImGui.Text($"Sale Price: {this.historyListing.SalePrice.ToString()}");
ImGui.Text($"Purchase Time: {this.historyListing.PurchaseTime.ToString(CultureInfo.InvariantCulture)}");
ImGui.Text($"Purchase Time: {this.historyListing.PurchaseTime.ToLocalTime().ToString(CultureInfo.InvariantCulture)}");
ImGui.Separator();
if (ImGui.Button("Looks Correct / Skip"))
{