TipTac Reborn

TipTac Reborn

862k Downloads

ItemLevel calculation error

helicdark opened this issue ยท 6 comments

commented

It seems the 22.12.15 version counted libram's ilvl two times.

Screenshots
WoWScrnShot_121822_114925
Libram of Renewal Equipped (ilvl 200), tiptac shows 223 while TinyInspect says 211

WoWScrnShot_121822_114949
No Libram, now tiptac is the same as TinyInspect.

TipTac Reborn (please complete the following information):

  • Version 22.12.15

WoW (please complete the following information):

  • Flavor: WotLKC
  • Version 3.4.0
commented

When uncommenting line 1068 you have to add a comma at the end of line 1067. Then it should work fine.

OK, now it looks like this:

local ignoreInventorySlots = {
	[INVSLOT_BODY] = true, -- shirt
	[INVSLOT_TABARD] = true -- tabard,
	[INVSLOT_RANGED] = true -- ranged
};

comma on line 1067 (1068 is the ranged line) but still not doing anything

commented

Thanks for reporting this. ๐Ÿ‘

Line 1068 of \TipTacTalents\libs\LibFroznFunctions-1.0\LibFroznFunctions-1.0.lua has to be uncommented so that it's active again:

local ignoreInventorySlots = {
[INVSLOT_BODY] = true, -- shirt
[INVSLOT_TABARD] = true -- tabard
-- [INVSLOT_RANGED] = true -- ranged
};

The fix will be included in the next release.

commented

When uncommenting line 1068 you have to add a comma at the end of line 1067. Then it should work fine.

commented

Thanks for reporting this. ๐Ÿ‘

Line 1068 of \TipTacTalents\libs\LibFroznFunctions-1.0\LibFroznFunctions-1.0.lua has to be uncommented so that it's active again:

local ignoreInventorySlots = {
[INVSLOT_BODY] = true, -- shirt
[INVSLOT_TABARD] = true -- tabard
-- [INVSLOT_RANGED] = true -- ranged
};

The fix will be included in the next release.

I uncommented that line and now ilvl doesn't show at all on the tooltip - not blank or N/A, error, etc. it's just gone from the tooltip completely (and yes it is enabled in options)

commented

I meant this (after "true", end of statement before comment):

local ignoreInventorySlots = {
	[INVSLOT_BODY] = true, -- shirt
	[INVSLOT_TABARD] = true, -- tabard
	[INVSLOT_RANGED] = true -- ranged
};
commented

Fixed with release v23.01.23.