1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-01-18 03:21:47 +02:00

Allow stacking iron/copper plates and electronic circuits. (#1368)

This commit is contained in:
grilledham 2023-08-03 19:59:00 +01:00 committed by GitHub
parent d556586985
commit 9291cc7e04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,13 @@ local default_allowed_recipes = {
['deadlock-stacks-stack-coal'] = true,
['deadlock-stacks-unstack-coal'] = true,
['deadlock-stacks-stack-uranium-ore'] = true,
['deadlock-stacks-unstack-uranium-ore'] = true
['deadlock-stacks-unstack-uranium-ore'] = true,
['deadlock-stacks-stack-iron-plate'] = true,
['deadlock-stacks-unstack-iron-plate'] = true,
['deadlock-stacks-stack-copper-plate'] = true,
['deadlock-stacks-unstack-copper-plate'] = true,
['deadlock-stacks-stack-electronic-circuit'] = true,
['deadlock-stacks-unstack-electronic-circuit'] = true
}
local function is_deadlock_stacks_recipe(name)