Fix crash on nil note on landsale block

This commit is contained in:
bremaweb 2015-04-04 22:09:56 -04:00
parent 01f21dfe08
commit baba81eeb1

View File

@ -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!")