another bug fix

This commit is contained in:
Rubenwardy 2013-02-22 19:23:37 +00:00
parent 4781aed51f
commit 3b845c0d81
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ minetest.register_on_dignode(function(pos, oldnode, digger)
data['unlocked']={}
end
if res~=nil and (not data['unlocked'][res] or data['unlocked'][res]==res) then
if res~=nil and (not data['unlocked'][res] or data['unlocked'][res]~=res) then
data['unlocked'][res]=res
minetest.chat_send_player(playern, "Achievement Unlocked: "..res)
end