1.74
REPRODUCTION STEPS:
old = {}
old.turtle = turtle
function inspect()
return old.turtle.inspect()
end
turtle.inspect = inspect
print(tostring(turtle.inspect()))
EXPECTED RESULT:prints "true" or "false" depending on what's in front of the turtle
ACTUAL RESULT:
screen goes black, nothing happens, can't reboot, can't shut down, can't stop the script. Eventually, it reboots by itself.
PS: If you break the turtle while the screen is black, if you place it back (even in another spot) the script seems to still run. It still eventually stops. Also, once you did that, if you place another turtle (I placed it in the same spot as before, maybe it has something to do with it) the same thing will happen. The turtle will take a few minutes to turn on.