local function get_int_attribute

master
A. Demant 2018-09-05 17:10:31 +02:00
parent 95e9964ae0
commit ac0ff40219
1 changed files with 9 additions and 1 deletions

View File

@ -216,7 +216,7 @@ messages.mobs = {en = {
" weil er im Weg war." " weil er im Weg war."
}} }}
function get_message(mtype) local function get_message(mtype)
if RANDOM_MESSAGES then if RANDOM_MESSAGES then
return messages[mtype][LANG][math.random(1, #messages[mtype])] return messages[mtype][LANG][math.random(1, #messages[mtype])]
else else
@ -224,6 +224,14 @@ function get_message(mtype)
end end
end end
local function get_int_attribute(player, key)
local level = player:get_attribute(key)
if level then
return tonumber(level)
else
return nil
end
end