From 56c9f71296694a661c55789e24b3418d0b9e6db7 Mon Sep 17 00:00:00 2001 From: John Date: Fri, 7 Aug 2015 23:32:10 +0300 Subject: [PATCH] Yet another fix.. --- toontown/makeatoon/ColorShop.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/toontown/makeatoon/ColorShop.py b/toontown/makeatoon/ColorShop.py index be3e0dd9..9fc18865 100755 --- a/toontown/makeatoon/ColorShop.py +++ b/toontown/makeatoon/ColorShop.py @@ -220,6 +220,10 @@ class ColorShop(StateData.StateData): length = len(colorList) self.allChoice = (self.allChoice + offset) % length self.__updateScrollButtons(self.allChoice, length, self.allLButton, self.allRButton) + self.__updateScrollButtons(self.allChoice, length, self.headLButton, self.headRButton) + self.__updateScrollButtons(self.allChoice, length, self.armLButton, self.armRButton) + self.__updateScrollButtons(self.allChoice, length, self.gloveLButton, self.gloveRButton) + self.__updateScrollButtons(self.allChoice, length, self.legLButton, self.legRButton) newColor = colorList[self.allChoice] self.dna.headColor = newColor self.dna.armColor = newColor