Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions server/server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ local function loadMLOData(source, filename, nameHashString, openUI)
local data = nil

if filename ~= nil and nameHashString ~= nil then
data = htio.readFile(source, constants.savedMloDirPath, filename, 'json')
data = htio.readFile(source, constants.savedMLODirPath, filename, 'json')

if data then data = json.decode(data) end
end
Expand Down Expand Up @@ -175,7 +175,7 @@ lib.addCommand('openmlo', {
local filename = mloFilenameLookup[tostring(nameHash)]

if filename then
data = htio.readFile(source, constants.savedMloDirPath, filename, 'json')
data = htio.readFile(source, constants.savedMLODirPath, filename, 'json')

if data then
data = json.decode(data)
Expand Down Expand Up @@ -223,7 +223,7 @@ CreateThread(function()

for i = 1, fileCount do
local filename = files[i]
local mloDataString = htio.readFile(nil, constants.savedMloDirPath, filename, 'json')
local mloDataString = htio.readFile(nil, constants.savedMLODirPath, filename, 'json')

if mloDataString ~= nil then
local mloData = json.decode(mloDataString)
Expand Down