1
0
mirror of https://github.com/Sokomine/cottages.git synced 2024-09-21 03:50:23 +02:00
cottages/compat/adventuretest.lua
2023-01-23 16:07:26 -08:00

11 lines
352 B
Lua

-- search for the workbench in AdventureTest
local workbench = minetest.registered_nodes["workbench:3x3"]
if workbench then
local cottages_table_def = minetest.registered_nodes["cottages:table"]
minetest.override_item("cottages:table", {
tiles = {workbench.tiles[1], cottages_table_def.tiles[1]},
on_rightclick = workbench.on_rightclick
})
end