Fix string for next floor on load screen to use display string name of next floor

This commit is contained in:
2026-06-09 01:02:49 -07:00
parent 714d3a771c
commit fa248e5ba1
5 changed files with 11 additions and 3 deletions
@@ -51,7 +51,7 @@ public partial class LoadNextLevel : Control, IFloorClearMenu
ExitButton.Pressed += ExitButton_Pressed;
}
private void CurrentFloorNumber_Sync(int _) => FloorNumber.Text = (_map.CurrentFloorNumber.Value + 1).ToString("D2");
private void CurrentFloorNumber_Sync(int _) => FloorNumber.Text = _map.NextFloorDisplayString;
private void EquipmentComponent_EquipmentChanged(IEquipableItem obj)
{