Fix crash on nil note on landsale block
This commit is contained in:
parent
01f21dfe08
commit
baba81eeb1
@ -63,7 +63,7 @@ minetest.register_node("landrush:sale_block",{
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_int("price",fields.price)
|
||||
meta:set_string("note",fields.note)
|
||||
meta:set_string("infotext","For sale by "..owner.." for " .. tostring(fields.price) .." "..fields.note)
|
||||
meta:set_string("infotext","For sale by "..owner.." for " .. tostring(fields.price) .." "..tostring(fields.note))
|
||||
meta:set_string("formspec",landrush.sell_formspec(pos,sender))
|
||||
else
|
||||
minetest.chat_send_player(name,"You can't configure this sale!")
|
||||
|
Loading…
x
Reference in New Issue
Block a user