Skip to content

Commit

Permalink
Fix PowerBinder Costume Change step to have 10 slots and to use the r…
Browse files Browse the repository at this point in the history
…ight one
  • Loading branch information
emersonrp committed Jan 23, 2025
1 parent 9ed6692 commit cb4fd8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UI/PowerBinderDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ def BuildUI(self, dialog):
costumeChangeSizer = wx.BoxSizer(wx.HORIZONTAL)
costumeChangeSizer.Add(wx.StaticText(dialog, -1, "Costume:"), 0, wx.ALIGN_CENTER_VERTICAL|wx.RIGHT, 4)
self.costumeChangeCostume = wx.Choice(dialog, -1,
choices = ["First", "Second", "Third", "Fourth", "Fifth"])
choices = ["First", "Second", "Third", "Fourth", "Fifth", "Sixth", "Seventh", "Eighth", "Ninth", "Tenth"])
self.costumeChangeCostume.SetSelection(0)
costumeChangeSizer.Add(self.costumeChangeCostume, 1, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5)

Expand All @@ -732,7 +732,7 @@ def BuildUI(self, dialog):
return costumeChangeSizer

def MakeBindString(self):
costumeNumber = self.costumeChangeCostume.GetSelection() + 1
costumeNumber = self.costumeChangeCostume.GetSelection()
costumeEmote = self.costumeChangeEmote.GetSelection()

if costumeEmote: # None, or 0 == "- None -"
Expand Down

0 comments on commit cb4fd8e

Please sign in to comment.