Rename entities file suffix to json

This commit is contained in:
David Vogel 2022-07-18 11:48:49 +02:00
parent cfe4193974
commit e8c6c8bb8f

View File

@ -125,11 +125,11 @@ end
local function createOrOpenEntityCaptureFile() local function createOrOpenEntityCaptureFile()
-- Make sure the file exists. -- Make sure the file exists.
local file = io.open("mods/noita-mapcap/output/entities.csv", "a") local file = io.open("mods/noita-mapcap/output/entities.json", "a")
if file ~= nil then file:close() end if file ~= nil then file:close() end
-- Create or reopen entities CSV file. -- Create or reopen entities CSV file.
file = io.open("mods/noita-mapcap/output/entities.csv", "r+b") -- Open for reading (r) and writing (+) in binary mode. r+b will not truncate the file to 0. file = io.open("mods/noita-mapcap/output/entities.json", "r+b") -- Open for reading (r) and writing (+) in binary mode. r+b will not truncate the file to 0.
if file == nil then return nil end if file == nil then return nil end
return file return file