mirror of
https://github.com/Mestima/wanda.git
synced 2025-05-05 22:50:14 +00:00
nightmarefuel are storable now
This commit is contained in:
parent
441582f980
commit
8562c269df
@ -54,6 +54,16 @@ configuration_options = {
|
|||||||
},
|
},
|
||||||
default = true
|
default = true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name = "nightmarefuel",
|
||||||
|
label = "Nightmare Fuel storable",
|
||||||
|
hover = "Can store Nightmare Fuel or not",
|
||||||
|
options = {
|
||||||
|
{ description = "you can", data = true },
|
||||||
|
{ description = "you can't", data = false }
|
||||||
|
},
|
||||||
|
default = true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name = "key_binds",
|
name = "key_binds",
|
||||||
label = "Enable Keybinds",
|
label = "Enable Keybinds",
|
||||||
@ -93,6 +103,6 @@ local function filltable(tbl)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
for i=5,7 do
|
for i=6, 8 do
|
||||||
filltable(configuration_options[i].options)
|
filltable(configuration_options[i].options)
|
||||||
end
|
end
|
||||||
|
@ -2,7 +2,8 @@ local containers = require("containers")
|
|||||||
|
|
||||||
local storable = {
|
local storable = {
|
||||||
["pocketwatch_dismantler"] = GetModConfigData("clock_tools"),
|
["pocketwatch_dismantler"] = GetModConfigData("clock_tools"),
|
||||||
["pocketwatch_parts"] = GetModConfigData("time_pieces")
|
["pocketwatch_parts"] = GetModConfigData("time_pieces"),
|
||||||
|
["nightmarefuel"] = GetModConfigData("nightmarefuel")
|
||||||
}
|
}
|
||||||
|
|
||||||
local bpMode = {
|
local bpMode = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user