I am creating a display system for my turtle, but the text that is supposed to output, isn't.


function Connect()
write('Bot ID: ')
bot = tonumber(read())
Connect()
end

function Status()
monitor1.clear()
mode = 0
rednet.open("top")
monitor1 = peripheral.wrap("left")
monitor1.setTextScale(1)
monitor1.setCursorPos(1,1)

while true do
monitor1.print("Fuel: " .. turtle.getFuelLevel())
monitor1.print("Saplings: " .. turtle.getItemCount(2))
monitor1.print("Bonemeal: " .. turtle.getItemCount(3))
Status()
end
end

The text "Bot ID: " never shows up. I have a similar setup for my Turtle that asks for the computer ID which works perfectly


function Connect()
write('Computer ID: ')
sender = read()
term.clear()
term.setCursorPos(1,1)
rednet.open('right')
Connect()
end

I have no idea what is going on so any help would be appreciated. Thanks


Edit: found the problem, no help needed