v2.0.0 error on login
Road-block opened this issue ยท 1 comments
Describe the bug
Lua error on logging in with the 2.0.0 version (had a previous version installed so not a fresh install)
Happens on toon with Find Minerals as well Hunter tracking abilities. en-US Classic client.
To Reproduce
Steps to reproduce the behavior:
- Login
- See error
Expected behavior
N/A
Screenshots
N/A
Additional context
1x GatherLite\Scripts\methods.lua:540: attempt to index local 'self' (a nil value)
GatherLite\Scripts\methods.lua:540: in function 'FakeHide'
GatherLite\Scripts\methods.lua:440: in function 'drawMinimap'
GatherLite\GatherLite-2.0.0.lua:98: in function <GatherLite\GatherLite.lua:67>
[C]:: ?
Ace3\AceAddon-3.0\AceAddon-3.0-12.lua:70: in function <Ace3\AceAddon-3.0\AceAddon-3.0.lua:65>
Ace3\AceAddon-3.0\AceAddon-3.0-12.lua:498: in function 'InitializeAddon'
Ace3\AceAddon-3.0\AceAddon-3.0-12.lua:613: in function <Ace3\AceAddon-3.0\AceAddon-3.0.lua:605>
Ok so the problem is dot/colon notation mixed up methods.lua#L440
needs to be node:FakeHide()
or node.FakeHide(node)