Don't allow to use empty nametag

This commit is contained in:
Wuzzy 2018-02-02 17:35:36 +01:00
parent 15d7764c65
commit fff0e572aa
1 changed files with 10 additions and 8 deletions

View File

@ -3608,6 +3608,7 @@ function mobs:feed_tame(self, clicker, feed_count, breed, tame)
if item:get_name() == "mobs:nametag" then
local tag = item:get_meta():get_string("name")
if tag ~= "" then
if string.len(tag) > 30 then
tag = string.sub(tag, 1, 30)
end
@ -3620,6 +3621,7 @@ function mobs:feed_tame(self, clicker, feed_count, breed, tame)
player:set_wielded_item(item)
end
end
end
return false