From 71f66c0556f1342001b2be70eb3b8fed2dc7c8fc Mon Sep 17 00:00:00 2001 From: Ziggeh Date: Sun, 13 Jul 2014 17:59:49 +0200 Subject: [PATCH] Removed tertiary colouring from the recolour radial Only the SE goggles used this and they could only have two colours modified. --- scripts/radial/item/recolorable.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/radial/item/recolorable.py b/scripts/radial/item/recolorable.py index 6c16964f..bd13e64b 100644 --- a/scripts/radial/item/recolorable.py +++ b/scripts/radial/item/recolorable.py @@ -4,7 +4,6 @@ import sys def createRadial(core, owner, target, radials): radials.add(RadialOptions(0, 98, 0, 'Modify primary color')) radials.add(RadialOptions(0, 99, 0, 'Modify secondary color')) - radials.add(RadialOptions(0, 100, 0, 'Modify tertiary color')) return def handleSelection(core, owner, target, option): @@ -12,7 +11,5 @@ def handleSelection(core, owner, target, option): core.suiService.sendColorPicker(owner, target, '/private/index_color_1') if option == 99 and target: core.suiService.sendColorPicker(owner, target, '/private/index_color_2') - if option == 100 and target: - core.suiService.sendColorPicker(owner, target, '/private/index_color_3') return \ No newline at end of file