From 8128ec9aef666ec13828287453a3f19b23d7fc7d Mon Sep 17 00:00:00 2001 From: Cooldude2606 Date: Wed, 27 May 2020 18:30:18 +0100 Subject: [PATCH] Changed Datastore Output For Mark --- expcore/datastore.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/expcore/datastore.lua b/expcore/datastore.lua index f2f526ad..ad433f3d 100644 --- a/expcore/datastore.lua +++ b/expcore/datastore.lua @@ -395,7 +395,7 @@ function Datastore:write_action(action, key, value) if value ~= nil then data[4] = type(value) == 'table' and '"'..game.table_to_json(value)..'"' or '"'..tostring(value)..'"' end - game.write_file('datastore.pipe', table.concat(data, ' ')..'\n', true, 0) + game.write_file('datastore.out', table.concat(data, ' ')..'\n', true, 0) end ----- Datastore Local @@ -827,4 +827,4 @@ end) Datastore.on_update = event_factory('on_update') ----- Module Return -return DatastoreManager \ No newline at end of file +return DatastoreManager