diff --git a/src/Settings/Pages/Interface - Information.lua b/src/Settings/Pages/Interface - Information.lua index 7fa527ed2b9..808c9f5d88c 100644 --- a/src/Settings/Pages/Interface - Information.lua +++ b/src/Settings/Pages/Interface - Information.lua @@ -1212,4 +1212,17 @@ settings.CreateInformationType("hash", { priority = 99999, text = "DEBUG: hash", HideCheckBox = not app.Debugging, +}) +settings.CreateInformationType("bonuses", { + priority = 99999, + text = "DEBUG: Item Bonuses", + HideCheckBox = not app.Debugging, + Process = function(t, data, tooltipInfo) + local bonuses = data.bonuses + if not bonuses or #bonuses < 1 then return end + tinsert(tooltipInfo, { + left = "Item Bonuses", + right = app.TableConcat(bonuses, nil, nil, " | ") + }); + end }) \ No newline at end of file