fix logic error

This commit is contained in:
Niklp09 2023-05-20 11:21:15 +02:00
parent efc157492a
commit 249ca5d861

View file

@ -422,7 +422,7 @@ minetest.register_node( "pride_flags:upper_mast", {
node_placement_prediction = "",
on_place = function( itemstack, placer, pointed_thing )
if not pointed_thing.type == "node" then
if pointed_thing.type ~= "node" then
return itemstack
end