Better count display for complex drops

master
Wuzzy 2016-08-17 11:33:15 +02:00
parent 9379f4a085
commit 4277106aed
1 changed files with 1 additions and 1 deletions

View File

@ -526,7 +526,7 @@ doc.new_category("nodes", {
local desc = get_desc(dropstack)
local count = dropstack:get_count()
if count ~= 1 then
desc = desc .. "(×"..count..")"
desc = count .. "×" .. desc
end
formstring = formstring .. desc
icount = icount + 1