mirror of
https://github.com/Sokomine/cottages.git
synced 2024-11-14 22:40:31 +01:00
11 lines
240 B
Lua
11 lines
240 B
Lua
cottages.handmill_product = {
|
|
__newindex = function(t, k, v)
|
|
cottages.straw.register_quern_craft({ input = k, output = v })
|
|
end,
|
|
}
|
|
cottages.forbid_repair = {
|
|
__newindex = function(t, k, v)
|
|
cottages.anvil.make_unrepairable(k)
|
|
end,
|
|
}
|