add missing filepaths

This commit is contained in:
unknown 2022-02-13 00:33:22 -05:00
parent 4cfacb1abc
commit 2060c59920
1 changed files with 2 additions and 0 deletions

View File

@ -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,