Compare commits

...

2 Commits

Author SHA1 Message Date
Anna ce2011ce33
chore: bump version to 1.7.0 2023-02-19 23:00:29 -05:00
Anna 338cba6dbe
fix: change order of apt location info 2023-02-19 23:00:28 -05:00
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.6.5</Version>
<Version>1.7.0</Version>
<TargetFramework>net7.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

View File

@ -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}";