From 2060c59920afc26d6647513a8a03b18843ee3479 Mon Sep 17 00:00:00 2001 From: unknown <24964441+wsor4035@users.noreply.github.com> Date: Sun, 13 Feb 2022 00:33:22 -0500 Subject: [PATCH] add missing filepaths --- computers/init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/computers/init.lua b/computers/init.lua index 5209d04..55849b4 100644 --- a/computers/init.lua +++ b/computers/init.lua @@ -4,6 +4,8 @@ computers.storagepath = minetest.get_worldpath() .. "/computers" computers.devicepath = computers.storagepath .. "/devices" computers.networkpath = computers.storagepath .. "/networks" minetest.mkdir(computers.storagepath) --make sure it exists +minetest.mkdir(computers.devicepath) --make sure it exists +minetest.mkdir(computers.networkpath) --make sure it exists computers.os = { version = 0.4,