From 79bea8c094fc2969786a8255dc084f3f3322276b Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Wed, 6 Jul 2022 20:26:53 +0200 Subject: [PATCH] Update progressBarEnergyExample.lua --- examples/progressBarEnergyExample.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/progressBarEnergyExample.lua b/examples/progressBarEnergyExample.lua index 5740e5c..aee5666 100644 --- a/examples/progressBarEnergyExample.lua +++ b/examples/progressBarEnergyExample.lua @@ -3,9 +3,9 @@ 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 energyCube = peripheral.find("ultimateEnergyCube")