From dd5cde742f7bbe856d459475e44e0fffae6566ad Mon Sep 17 00:00:00 2001 From: teejusb <5017202+teejusb@users.noreply.github.com> Date: Wed, 22 Mar 2023 11:10:04 -0700 Subject: [PATCH] Change condition for to >= for the lamps --- Graphics/MusicWheelItem Song NormalPart/GetLamp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Graphics/MusicWheelItem Song NormalPart/GetLamp.lua b/Graphics/MusicWheelItem Song NormalPart/GetLamp.lua index 3161dda13..614c679d6 100644 --- a/Graphics/MusicWheelItem Song NormalPart/GetLamp.lua +++ b/Graphics/MusicWheelItem Song NormalPart/GetLamp.lua @@ -134,7 +134,7 @@ return Def.ActorFrame{ if itl_lamp ~= nil then -- Disable for normal clear types. The wheel grade should cover it. - if itl_lamp <= 4 then + if itl_lamp >= 4 then self:visible(false) else self:visible(true)