From a0e4ef82740668ecf35cddb3f816607ca86ee256 Mon Sep 17 00:00:00 2001 From: LDDestroier Date: Wed, 14 Nov 2018 19:39:40 -0500 Subject: [PATCH] Update tron --- tron | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tron b/tron index 8855895..a41ec54 100644 --- a/tron +++ b/tron @@ -495,13 +495,13 @@ local startCountdown = function() scrollY = player[you].y - math.floor(scr_y / 2) for i = 3, 1, -1 do render() - term.setCursorPos(math.floor(scr_x / 2 - (#cMessage + #cName) / 2), math.floor(scr_y / 2)) + term.setCursorPos(math.floor(scr_x / 2 - (#cMessage + #cName) / 2), math.floor(scr_y / 2) + 2) term.setTextColor(colors.white) term.write(cMessage) term.setTextColor(col) term.write(cName) term.setTextColor(colors.white) - term.setCursorPos(math.floor(scr_x / 2 - 2), math.floor(scr_y / 2) + 2) + term.setCursorPos(math.floor(scr_x / 2 - 2), math.floor(scr_y / 2) + 4) term.write(i .. "...") sleep(1) end