Merge branch 'master' into singularity

This commit is contained in:
blitzmann
2018-05-20 00:22:24 -04:00
35 changed files with 168 additions and 131 deletions

View File

@@ -73,7 +73,7 @@ class BaseName(ViewColumn):
if stuff.slot == Slot.MODE:
return '─ Tactical Mode ─'
else:
return '{} Slots '.format(Slot.getName(stuff.slot).capitalize())
return '{} {} Slot{}'.format(stuff.num, Slot.getName(stuff.slot).capitalize(), '' if stuff.num == 1 else 's')
else:
return ""
elif isinstance(stuff, Module):