mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-03-15 12:21:24 +00:00
doors: Fix craftitem not listed in inventory (#1683)
Fixes bug caused by b847888
This commit is contained in:
parent
5fe831ed13
commit
b377aaa50d
1 changed files with 1 additions and 1 deletions
|
@ -254,7 +254,7 @@ function doors.register(name, def)
|
|||
minetest.register_craftitem(":" .. name, {
|
||||
description = def.description,
|
||||
inventory_image = def.inventory_image,
|
||||
groups = def.groups,
|
||||
groups = table.copy(def.groups),
|
||||
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
local pos
|
||||
|
|
Loading…
Add table
Reference in a new issue