From 838de82df9ed4d3f6b4d52ce7a62a35982fe3c3c Mon Sep 17 00:00:00 2001 From: payonel Date: Mon, 15 Jul 2019 02:11:37 -0700 Subject: [PATCH] woops, meant to grab only 1 return from assert --- .../resources/assets/opencomputers/loot/openos/boot/00_base.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/assets/opencomputers/loot/openos/boot/00_base.lua b/src/main/resources/assets/opencomputers/loot/openos/boot/00_base.lua index 475af463c..0709614b4 100644 --- a/src/main/resources/assets/opencomputers/loot/openos/boot/00_base.lua +++ b/src/main/resources/assets/opencomputers/loot/openos/boot/00_base.lua @@ -34,7 +34,7 @@ function print(...) local stdout = io.stdout local pre = "" for i = 1, args.n do - stdout:write(pre, assert(tostring(args[i]), "'tostring' must return a string to 'print'")) + stdout:write(pre, (assert(tostring(args[i]), "'tostring' must return a string to 'print'"))) pre = "\t" end stdout:write("\n")