add xdecor:workbench to limit_inventory_table

This commit is contained in:
waxtatect 2023-09-05 12:14:22 +02:00
parent 6833ea3932
commit db312bc725
2 changed files with 5 additions and 4 deletions

View File

@ -5,7 +5,7 @@
basic_machines = {
F = minetest.formspec_escape,
S = minetest.get_translator("basic_machines"),
version = "08/10/2023 (fork)",
version = "09/05/2023 (fork)",
properties = {
no_clock = false, -- if true all continuously running activities (clockgen/keypad) are disabled
machines_TTL = 16, -- time to live for signals, how many hops before signal dissipates
@ -22,7 +22,7 @@ basic_machines = {
energy_multiplier = 1, -- energy crystals multiplier
power_stackmax = 25, -- power crystals stack max
-- grinder
grinder_register_dusts = true, -- dusts/extractors for lumps/ingots, needed for the others grinder settings
grinder_register_dusts = true, -- dusts/extractors for lumps/ingots, needed for the other grinder settings
grinder_dusts_quantity = 2, -- quantity of dusts produced by lump/ingot, minimum 0
grinder_dusts_legacy = false, -- legacy dust mode: dust_33 (smelt) -> dust_66 (smelt) -> ingot
grinder_extractors_type = 1, -- recipe priority if optional mod present, 1: farming_redo, 2: x_farming

View File

@ -113,7 +113,7 @@ local mover = {
-- list of nodes mover can't take from in inventory mode
-- node name = {list of bad inventories to take from} OR node name = true to ban all inventories
limit_inventory_table = {
["basic_machines:autocrafter"] = {["recipe"] = 1, ["output"] = 1},
["basic_machines:autocrafter"] = {["output"] = 1, ["recipe"] = 1},
["basic_machines:battery_0"] = {["upgrade"] = 1},
["basic_machines:battery_1"] = {["upgrade"] = 1},
["basic_machines:battery_2"] = {["upgrade"] = 1},
@ -122,7 +122,8 @@ local mover = {
["basic_machines:grinder"] = {["upgrade"] = 1},
["basic_machines:mover"] = true,
["moreblocks:circular_saw"] = true,
["smartshop:shop"] = true
["smartshop:shop"] = true,
["xdecor:workbench"] = {["forms"] = 1, ["input"] = 1}
},
-- list of mover modes