Fix crash w/ attemp to give award w/o awards mod

master
Wuzzy 2016-12-04 14:52:17 +01:00
parent f8474a057b
commit d54a25acfd
1 changed files with 1 additions and 1 deletions

View File

@ -536,7 +536,7 @@ easyvend.check_earnings = function(buyername, nodemeta)
local cost = nodemeta:get_int("cost")
local itemname = nodemeta:get_string("itemname")
-- First sell
if minetest.get_player_by_name(owner) ~= nil then
if minetest.get_modpath("awards") and minetest.get_player_by_name(owner) ~= nil then
awards.unlock(owner, "easyvend_seller")
end
if itemname ~= easyvend.currency then