1lann / Mimic

A fully featured emulator for the Minecraft mod ComputerCraft that runs straight in your browser.
gravlann.github.io
MIT License
45 stars 20 forks source link

Strange pixels left behind #62

Open dirthsj opened 9 years ago

dirthsj commented 9 years ago

pixels

Temp Fixed by adding this to top of startup:

term.clear = function()
  for i = 1, 3 do
    oldclear()
  end
end