fix a bunch of bugs. still need to do more work on the station/circular saw distinction

This commit is contained in:
flux
2022-06-17 12:22:47 -07:00
parent 21d4fab1f5
commit 21f36e6c1c
10 changed files with 60 additions and 17 deletions

View File

@ -34,7 +34,7 @@ stairsplus_legacy = {
stairsplus_legacy.dofile("settings")
function stairsplus_legacy.register_legacy(node, overrides, meta)
if stairsplus_legacy.settings.stairsplus_legacy_mode then
if stairsplus.settings.legacy_mode then
stairsplus.api.register_group(node, "legacy", overrides, meta)
else
stairsplus.api.register_group(node, "common", overrides, meta)

View File

@ -8,6 +8,4 @@ stairsplus_legacy.settings = {
technic = s:get_bool("stairsplus_legacy.technic", true),
prefab = s:get_bool("stairsplus_legacy.prefab", true),
wool = s:get_bool("stairsplus_legacy.wool", true),
stairsplus_legacy_mode = s:get_bool("stairsplus.legacy_mode")
}