From 500149029223aafb9250dda9c6132327e048789f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20P=C3=A9rez-Cerezo?= Date: Mon, 27 Jun 2016 22:34:56 +0200 Subject: Fixed bug --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index ae7195c..d4fe534 100644 --- a/init.lua +++ b/init.lua @@ -211,7 +211,7 @@ protector.can_dig = function(r, pos, digger, onlyowner, infolevel) local pos = minetest.find_nodes_in_area( {x = pos.x - r, y = pos.y - r, z = pos.z - r}, {x = pos.x + r, y = pos.y + r, z = pos.z + r}, - {"protector:protect", "protector:protect2"}) + {"protector:protect", "protector:protect2", "protector:protect_sell"}) local meta, owner, members @@ -639,7 +639,7 @@ minetest.register_on_player_receive_fields(function(player, formname, fields) if fields.cancel then return end - if price > atm.balance[name] then + if price > atm.balance[name] and not name == oldowner then minetest.chat_send_player(name, "Not enough money on your account. Please recharge on the atm") return else -- cgit v1.2.3