diff --git a/README.md b/README.md index aafae44..56fcc85 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,4 @@ Issues ------ - Bubbler (and other weapons?) can't break blocks in the First Cave. +- Unable to create /data/Stage directories. diff --git a/src/conf.lua b/src/conf.lua index 7a22133..c555b92 100644 --- a/src/conf.lua +++ b/src/conf.lua @@ -19,23 +19,22 @@ function love.conf(t) t.accelerometerjoystick = false t.gammacorrect = false - -- t.releases = { - -- -- This is the name of the zip archive which contains your game. - -- title = 'Cave Story Randomizer', - -- -- This is the name of your game's executable. - -- package = 'Cave Story Randomizer', - -- loveVersion = '11.1', - -- version = nil, - -- author = 'shru', - -- email = nil, - -- description = nil, - -- homepage = 'https://shru.itch.io/cave-story-randomizer', - -- -- MacOS needs this. - -- identifier = 'CaveStoryRandomizer', - -- excludeFileList = { - -- -- '.+%.ase', - -- }, - -- compile = false, - -- releaseDirectory = 'releases', - -- } + t.releases = { + -- This is the name of the zip archive which contains your game. + title = 'Cave Story Randomizer', + -- This is the name of your game's executable. + package = 'Cave Story Randomizer', + loveVersion = '11.1', + version = nil, + author = 'shru', + email = nil, + description = nil, + homepage = 'https://shru.itch.io/cave-story-randomizer', + -- MacOS needs this. + identifier = 'CaveStoryRandomizer', + excludeFileList = { + }, + compile = false, + releaseDirectory = 'releases', + } end