Update sPhone.lua

This commit is contained in:
Ale32bit 2015-10-05 22:58:15 +02:00
parent 07a721e723
commit 47612015d6

View file

@ -382,9 +382,9 @@ end
if #fmessage >= #smessage then
local w, h = term.getSize
term.setBackgroundColor(side)
paintutils.drawBox(11 - math.ceil(#fmessage / 2), 5, 16 + math.ceil(#fmessage / 2), 10, side)
paintutils.drawBox(14 - math.ceil(#fmessage / 2), 5, 13 + math.ceil(#fmessage / 2), 10, side)
term.setBackgroundColor(bg)
paintutils.drawFilledBox(12 - math.ceil(#fmessage / 2), 6, 15 + math.ceil(#fmessage / 2), 9, bg)
paintutils.drawFilledBox(15 - math.ceil(#fmessage / 2), 6, 12 + math.ceil(#fmessage / 2), 9, bg)
term.setCursorPos(14 - math.ceil(#fmessage / 2), 7)
term.setTextColor(text)
write(fmessage)