mirror of
https://github.com/Sokomine/cottages.git
synced 2024-11-10 20:30:46 +01:00
11 lines
260 B
Lua
11 lines
260 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
|
|
}
|