From b13b87200541be3a3e356429da639d7cf0a92d27 Mon Sep 17 00:00:00 2001 From: SErAphLi Date: Sun, 10 Nov 2019 18:47:42 +0800 Subject: [PATCH] Fix loot total count --- Data/Loot.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/Loot.lua b/Data/Loot.lua index 84ae566..39be03f 100644 --- a/Data/Loot.lua +++ b/Data/Loot.lua @@ -56,7 +56,7 @@ local function parse_CHAT_MSG_LOOT(chatmsg) return newDict( "name", name, "amount", amount, - "total", GetItemCount(itemLink) + amount, + "total", GetItemCount(itemLink), "icon", texture ) end