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