From cb0eb5ce13f9af4f90b5fc11d45ac3fe4b2d62aa Mon Sep 17 00:00:00 2001 From: BarryNorfolk Date: Mon, 23 Dec 2024 13:29:53 +0100 Subject: [PATCH] Reverse ordering of bounties so last entry comes first --- Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs b/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs index a0fe1c091b7..26e5af1ba33 100644 --- a/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs +++ b/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs @@ -44,9 +44,11 @@ public void UpdateEntries(List bounties, List= 0; i--) { - BountyHistoryContainer.AddChild(new BountyHistoryEntry(h)); + BountyHistoryContainer.AddChild(new BountyHistoryEntry(history[i])); } } }