changed the command for exiting

This commit is contained in:
Lux Aliaga 2021-05-07 02:40:18 -04:00
parent b0bf6b4fc7
commit 4cb2d387e9
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ centerHeight = round(height / 2) -- Defines the vertical center
peripherals = peripheral.getNames() -- Gets peripherals to check if any disk drives are avavailable
if #peripherals < 0 then
print "No drive"
os.exit() -- Exits if there's no disk drive
return true -- Exits if there's no disk drive
else
driveCount = 0
for n = 1, #peripherals do
@ -134,7 +134,7 @@ while true do
playDisc()
end
elseif name == "q" then
os.exit()
return true
end
end
end