New promo images & save fix
This commit is contained in:
parent
e9deb2de19
commit
2d46b7ad6c
20
main.lua
20
main.lua
@ -3,7 +3,8 @@ local mod = RegisterMod(modname, 1)
|
|||||||
local math = require("math")
|
local math = require("math")
|
||||||
mod.print = Isaac.ConsoleOutput
|
mod.print = Isaac.ConsoleOutput
|
||||||
mod.game = Game()
|
mod.game = Game()
|
||||||
local save = include("save"):new()
|
local savegen = include("save")
|
||||||
|
local save = savegen:new()
|
||||||
local json = include("json")
|
local json = include("json")
|
||||||
local DEBUG = false
|
local DEBUG = false
|
||||||
|
|
||||||
@ -119,12 +120,23 @@ function mod:newrun()
|
|||||||
if DEBUG then
|
if DEBUG then
|
||||||
mod.print(data.."\n")
|
mod.print(data.."\n")
|
||||||
end
|
end
|
||||||
|
save = savegen:new()
|
||||||
save:load(json, data)
|
save:load(json, data)
|
||||||
local c = 0
|
local c = 0
|
||||||
for _,v in ipairs(save.seen) do
|
for _,v in ipairs(save.seen) do
|
||||||
if v then c = c+1 end
|
if v then c = c+1 end
|
||||||
end
|
end
|
||||||
mod.print(modname.." Loaded, "..c.." items seen\n")
|
mod.print(modname.." loaded, "..c.." vanilla items seen")
|
||||||
|
if save.settings.showonmodded then
|
||||||
|
local c = 0
|
||||||
|
for _,v in pairs(save.seenmodded) do
|
||||||
|
if v then
|
||||||
|
c = c + 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
mod.print(", "..tostring(c).." modded")
|
||||||
|
end
|
||||||
|
mod.print(".\n")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -195,6 +207,10 @@ if ModConfigMenu then
|
|||||||
end,
|
end,
|
||||||
OnChange = function(b)
|
OnChange = function(b)
|
||||||
save.settings.showonmodded = b
|
save.settings.showonmodded = b
|
||||||
|
if b==false then
|
||||||
|
-- Reset modded items
|
||||||
|
save.seenmodded = {}
|
||||||
|
end
|
||||||
mod:save()
|
mod:save()
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 182 KiB After Width: | Height: | Size: 199 KiB |
BIN
workshop/preview3.png
Normal file
BIN
workshop/preview3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 176 KiB |
Loading…
Reference in New Issue
Block a user