1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-06-26 07:03:22 +00:00

Don't sort startup files

fs.list is already sorted, making this unnecessary.
This commit is contained in:
Lignum 2017-05-10 23:27:07 +02:00
parent 962e419098
commit 8acf43256c
No known key found for this signature in database
GPG Key ID: 0889206F5A8A700D

View File

@ -246,7 +246,6 @@ if settings.get( "shell.allow_disk_startup" ) then
end
end
if type( tUserStartups ) == "table" then
table.sort( tUserStartups )
for _,v in pairs( tUserStartups ) do
shell.run( v )
end