mirror of
https://fem.mint.lgbt/m/Rhythmblock.git
synced 2024-08-14 20:27:11 +00:00
fixed code not belonging in if statement
This commit is contained in:
parent
77a8d5442f
commit
14242cf95e
1 changed files with 6 additions and 2 deletions
|
@ -4,13 +4,17 @@ buttonColor = colors.lightGray
|
|||
textColor = colors.lightGray
|
||||
altTextColor = colors.gray
|
||||
backgroundColor = colors.black
|
||||
if arg[1] == nil then
|
||||
|
||||
-- Code starts from here
|
||||
|
||||
function round(n) -- We need a function to round the center of the terminal
|
||||
return n % 1 >= 0.5 and math.ceil(n) or math.floor(n)
|
||||
end
|
||||
width, height = term.getSize() -- Gets the terminal size to determine the center
|
||||
centerWidth = round(width / 2) -- Defines the horizontal center
|
||||
centerHeight = round(height / 2) -- Defines the vertical center
|
||||
|
||||
if arg[1] == nil then
|
||||
peripherals = peripheral.getNames() -- Gets peripherals to check if any disk drives are avavailable
|
||||
if #peripherals < 0 then
|
||||
print "No drive"
|
||||
|
@ -26,7 +30,7 @@ centerHeight = round(height / 2) -- Defines the vertical center
|
|||
end
|
||||
if driveCount > 1 then
|
||||
print("Too many disk drives. Specify where the disk drive is by running rhythmbox [drive position]") -- For safety reasons
|
||||
os.exit()
|
||||
return false
|
||||
end
|
||||
end
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue