Merge pull request 'fix logic error' (#7) from Niklp/pride_flags:master into master

Reviewed-on: https://codeberg.org/Wuzzy/pride_flags/pulls/7
This commit is contained in:
Wuzzy 2023-05-20 16:24:49 +00:00
commit f58488c715

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