Skip to content

Commit

Permalink
Change condition for to >= for the lamps
Browse files Browse the repository at this point in the history
  • Loading branch information
teejusb committed Mar 22, 2023
1 parent 07db196 commit dd5cde7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Graphics/MusicWheelItem Song NormalPart/GetLamp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit dd5cde7

Please sign in to comment.