Update luastart.lua

This commit is contained in:
D4rkl1ght3r
2025-02-17 19:23:47 +01:00
parent 95954c245c
commit c87740ca41
2 changed files with 10 additions and 0 deletions

View File

View File

@@ -56,4 +56,14 @@ if fileManhattan then
print("Setting Manhattan Scene to " .. manhattan_gen)
else
print("Error while opening manhattan.txt")
end
local toledo_gen = "origin"
local fileToledo = io.open(".\\REM\\LUA\\DYNAMIC\\toledo.txt", "w")
if fileToledo then
fileToledo:write(toledo_gen)
fileToledo:close()
print("Setting Toledo Scene to " .. toledo_gen)
else
print("Error while opening toledo.txt")
end