diff --git a/korman/properties/modifiers/logic.py b/korman/properties/modifiers/logic.py index a7fc776..f4322e2 100644 --- a/korman/properties/modifiers/logic.py +++ b/korman/properties/modifiers/logic.py @@ -187,11 +187,6 @@ class PlasmaTakeClothing(PlasmaModifierProperties, PlasmaModifierLogicWiz): subtype="COLOR", min=0.0, max=1.0, default=(1.0, 1.0, 1.0)) - clothing_tint2on = BoolProperty(name="Second Tint?", - description="Does the clothing item have a second tint color?", - default=False, - options=set()) - options=set()) clothing_stayvis = BoolProperty(name="Stay Visible After Click?", description="Should the clothing stay visible after first clicking?", default=False, diff --git a/korman/ui/modifiers/logic.py b/korman/ui/modifiers/logic.py index b016bd2..56d9db5 100644 --- a/korman/ui/modifiers/logic.py +++ b/korman/ui/modifiers/logic.py @@ -61,18 +61,14 @@ def clothing(modifier, layout, context): layout.label(text="Default Clothing Color(s):") split = layout.split() col = split.column() - col.prop(modifier, "clothing_tint2on") + col.prop(modifier, "clothing_tint1") col = split.column() - col.prop(modifier, "clothing_hair") + col.prop(modifier, "clothing_tint2") split = layout.split() col = split.column() - col.prop(modifier, "clothing_tint1") - - col = split.column() - col.enabled = modifier.clothing_tint2on is True - col.prop(modifier, "clothing_tint2") + col.prop(modifier, "clothing_hair") layout.separator() layout.label(text="Visibility:")