feat: close menu after selecting a course

This commit is contained in:
Jonny_Bro (Nikita) 2025-02-24 17:52:51 +05:00
parent 98ae519b1b
commit 1876c95130
No known key found for this signature in database
GPG key ID: A18808B38428F7C4

View file

@ -59,10 +59,11 @@ function OpenCourseMenu()
local dirsearch = dir .. "*.txt"
local files = file.Find(dirsearch, "DATA", "datedesc")
PrintTable(files)
if BEATRUN_DEBUG then PrintTable(files) end
table.Empty(courselist.elements)
for k, v in pairs(files) do
for _, v in pairs(files) do
local data = file.Read(dir .. v, "DATA")
local course = util.Decompress(data) or data
@ -75,6 +76,9 @@ function OpenCourseMenu()
function courseentry:onclick()
LocalPlayer():EmitSound("buttonclick.wav")
LoadCourse(filename)
AEUI:RemovePanel(courselist)
AEUI:RemovePanel(coursepanel)
end
courseentry.greyed = sacheck