From c4202b49f43949cb779176163828763b03346db1 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sat, 7 Oct 2017 23:28:25 -0400 Subject: [PATCH] Fix another IDProp oversight --- korman/ui/modifiers/render.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/korman/ui/modifiers/render.py b/korman/ui/modifiers/render.py index f097f66..34063c2 100644 --- a/korman/ui/modifiers/render.py +++ b/korman/ui/modifiers/render.py @@ -71,8 +71,8 @@ def lighting(modifier, layout, context): col.label("Other Plasma lights {} be cast at runtime.".format("will" if modifier.rt_lights else "will NOT"), icon="LAYER_USED") - if lightmap.enabled and lightmap.light_group: - col.label(" All '{}' lights will be baked to a lightmap".format(lightmap.light_group), + if lightmap.enabled and lightmap.lights: + col.label(" All '{}' lights will be baked to a lightmap".format(lightmap.lights), icon="LAYER_USED") elif have_static_lights: light_type = "Blender-only" if modifier.rt_lights else "unanimated"