Skip to content
Snippets Groups Projects
Commit b377aaa5 authored by SmallJoker's avatar SmallJoker Committed by GitHub
Browse files

doors: Fix craftitem not listed in inventory (#1683)

Fixes bug caused by b847888c
parent 5fe831ed
Branches
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment