From 9f3ff92fbafacd48f5b8eae42ebfb7ac987ecee0 Mon Sep 17 00:00:00 2001 From: Anna Date: Sun, 19 Feb 2023 23:00:20 -0500 Subject: [PATCH] fix: change order of apt location info --- client/Ui/MainWindowTabs/MessageList.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Ui/MainWindowTabs/MessageList.cs b/client/Ui/MainWindowTabs/MessageList.cs index bc32c8c..6757e37 100644 --- a/client/Ui/MainWindowTabs/MessageList.cs +++ b/client/Ui/MainWindowTabs/MessageList.cs @@ -85,9 +85,9 @@ internal class MessageList : ITab { var apt = wing == 2 ? apartment - HousingLocationExt.Wng : apartment; if (apt == 0) { - loc += $", Wing {wing} Lobby"; + loc += $", Wing {wing}, Lobby"; } else { - loc += $", Apt. {apt}, Wing {wing}"; + loc += $", Wing {wing}, Apt. {apt}"; } } else { loc += $", Plot {message.Plot.Value}";