diff options
| -rw-r--r-- | asciifarm/client/display.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/asciifarm/client/display.py b/asciifarm/client/display.py index f138382..a2c142e 100644 --- a/asciifarm/client/display.py +++ b/asciifarm/client/display.py @@ -134,12 +134,10 @@ class Display: def setEquipment(self, slots): - self.equipment.setItems( - sorted([ - slot + ": " + (item if item else "") - for slot, item in slots.items() - ]) - ) + self.equipment.setItems([ + slot + ": " + (item if item else "") + for slot, item in slots + ]) def setGround(self, items): self.ground.setItems(items) |
