mirror of
https://codeberg.org/Wuzzy/pride_flags.git
synced 2025-03-15 04:41:21 +00:00
fix logic error
This commit is contained in:
parent
efc157492a
commit
249ca5d861
1 changed files with 1 additions and 1 deletions
2
init.lua
2
init.lua
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue