summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.lua4
1 files 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