From 21e47a80ec3442642145f6ba4291f427be16d406 Mon Sep 17 00:00:00 2001 From: Misnad Khasim Date: Thu, 30 Nov 2023 17:09:11 +0000 Subject: [PATCH] Node Drawtypes: Fix a small typo in example code --- _en/items/node_drawtypes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_en/items/node_drawtypes.md b/_en/items/node_drawtypes.md index 24fb6ae..bf58d61 100644 --- a/_en/items/node_drawtypes.md +++ b/_en/items/node_drawtypes.md @@ -147,7 +147,7 @@ minetest.register_node("myair:air", { walkable = false, -- Would make the player collide with the air node pointable = false, -- You can't select the node diggable = false, -- You can't dig the node - buildable_to = true, -- Nodes can be replace this node. + buildable_to = true, -- Nodes can replace this node. -- (you can place a node and remove the air node -- that used to be there)