This commit is contained in:
ZareMate 2023-07-31 12:01:29 +02:00
parent f08ba815f0
commit 0edd699e24
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ function First()
lightSystem(colors.white) lightSystem(colors.white)
end end
function SecondOn() function Second()
lightSystem(colors.orange) lightSystem(colors.orange)
end end
@ -110,7 +110,7 @@ mainMenu = {
} }
lightsMenu = { lightsMenu = {
[1] = { text = "First", handler = First }, [1] = { text = "First", handler = First },
[2] = { text = "Second", handler = SecondOn }, [2] = { text = "Second", handler = Second },
[3] = { text = "Third", handler = Third }, [3] = { text = "Third", handler = Third },
[4] = { text = "Fourth", handler = Fourth }, [4] = { text = "Fourth", handler = Fourth },
[5] = { text = "Fifth", handler = Fifth }, [5] = { text = "Fifth", handler = Fifth },