aboutsummaryrefslogtreecommitdiff
path: root/games/devtest/mods/callbacks/nodes.lua
diff options
context:
space:
mode:
authorWuzzy <Wuzzy@disroot.org>2022-10-08 18:58:02 +0200
committersfan5 <sfan5@live.de>2022-10-23 21:58:56 +0200
commitc1e732448ca3cfc1c7e2b1a8c19b8f80ac06bd06 (patch)
tree48b60c3aff96083517906b84108580edd1b65a46 /games/devtest/mods/callbacks/nodes.lua
parent23ef0d0916207c9d00ec3b39778fb8a7ec29e1cb (diff)
downloadminetest-c1e732448ca3cfc1c7e2b1a8c19b8f80ac06bd06.tar.xz
DevTest: /test_place_node skips dummy/cb nodes
Diffstat (limited to 'games/devtest/mods/callbacks/nodes.lua')
-rw-r--r--games/devtest/mods/callbacks/nodes.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/games/devtest/mods/callbacks/nodes.lua b/games/devtest/mods/callbacks/nodes.lua
index baaf9fbc7..5cc9c8b70 100644
--- a/games/devtest/mods/callbacks/nodes.lua
+++ b/games/devtest/mods/callbacks/nodes.lua
@@ -7,7 +7,7 @@ minetest.register_node("callbacks:callback_node", {
description = "Callback Test Node (construct/destruct/timer)".."\n"..
"Tests callbacks: on_construct, after_place_node, on_destruct, after_destruct, after_dig_node, on_timer",
tiles = {"callbacks_callback_node.png"},
- groups = {dig_immediate=3},
+ groups = {callback_test=1, dig_immediate=3},
-- This was known to cause a bug in minetest.item_place_node() when used
-- via minetest.place_node(), causing a placer with no position
paramtype2 = "facedir",