From 4bbdb3ba31929f2930c638787012a9536aa8d013 Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Wed, 6 Jul 2022 20:27:22 +0200 Subject: [PATCH] Update basaltPreview.lua --- examples/basaltPreview.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/basaltPreview.lua b/examples/basaltPreview.lua index 2303e7d..cd5e5fc 100644 --- a/examples/basaltPreview.lua +++ b/examples/basaltPreview.lua @@ -1,9 +1,9 @@ --Basalt configurated installer local filePath = "basalt.lua" --here you can change the file path default: basalt.lua if not(fs.exists(filePath))then - shell.run("pastebin run ESs1mg7P "..filePath) -- this is an alternative to the wget command + shell.run("pastebin run ESs1mg7P packed true "..filePath) -- this is an alternative to the wget command end -local basalt = dofile(filePath) -- here you can change the variablename in any variablename you want default: basalt +local basalt = require(filePath) -- here you can change the variablename in any variablename you want default: basalt local w, h = term.getSize()