From 3a71d56618ffa439cb07aa99702682073c3478d4 Mon Sep 17 00:00:00 2001 From: Hadinos Sanosam Date: Tue, 12 Jan 2021 01:56:53 +0100 Subject: [PATCH] Bugfix in utils --- utils | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils b/utils index 892a751..5741318 100644 --- a/utils +++ b/utils @@ -22,7 +22,7 @@ function utils.setupMonitor(side, textScale) local mon = peripheral.wrap(side) mon.clear() mon.setTextScale(textScale) - mon.setCursor(1, 1) + mon.setCursorPos(1, 1) return mon end