From f4e7911903624f9112a3d66c3962caed0d0150e8 Mon Sep 17 00:00:00 2001 From: Guy Liner Date: Sun, 2 Jan 2022 17:32:43 -0500 Subject: [PATCH] Removed a comment that was not needed and added a new line below the comment block --- mods/CORE/mcl_util/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/CORE/mcl_util/init.lua b/mods/CORE/mcl_util/init.lua index dec12d2e9..32c3b0dee 100644 --- a/mods/CORE/mcl_util/init.lua +++ b/mods/CORE/mcl_util/init.lua @@ -26,10 +26,10 @@ end -- function minetest_rotate_and_place. It rotates -- a block based on where it thinks the player is facing -- at the moment. This is typically called by pillar-like nodes. + function mcl_util.rotate_axis(itemstack, placer, pointed_thing) minetest.rotate_and_place(itemstack, placer, pointed_thing, minetest.is_creative_enabled(placer:get_player_name())) - --placer:get_player_control().sneak) return itemstack end