You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a suggestion/feature request to show the average gp per kill as a tooltip on the "Kills Logged" panel similar to the way the current loot tracker does.
I believe a simple way to get this effect could be the following addition to the existing code in the LootPanel class:
// Store Total ValuelongtotalValue = lootLog.getLootValue(false);
// Show gp/kill tooltipif (killsLogged > 0)
{
killsLoggedPanel.setToolTipText(QuantityFormatter.formatNumber(totalValue / killsLogged) + " gp/kill");
}
Thanks for the plugin, and I appreciate any consideration.
The text was updated successfully, but these errors were encountered:
This is a suggestion/feature request to show the average gp per kill as a tooltip on the "Kills Logged" panel similar to the way the current loot tracker does.
I believe a simple way to get this effect could be the following addition to the existing code in the
LootPanel
class:Thanks for the plugin, and I appreciate any consideration.
The text was updated successfully, but these errors were encountered: