Log in to ZYGOR
Log in with social media
OR
Log in with Zygor account

Announcement

Collapse
No announcement yet.

Lua Errors

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Lua Errors

    Edit: WoW Classic

    I use an addon called NeatMinimap which hides the buttons and other children of the minimap and then makes them appear when i hover the minimap.

    This produces errors in the pointer.lua with the specific lines

    Code:
    if self.waypoint.passive then return end
    Which should all be replaced by

    Code:
    if self.waypoint and self.waypoint.passive then return end
    EDIT: I've edited my own Pointer.lua to reflect this change but I have to redo it every time there's an update.
    Last edited by rainfordays; May 8, 2020, 05:41 AM.

    #2
    That's a valid fix, indeed, though it makes one wonder why the self.waypoint would be nil... Still, it merits employing, if NeatMinimap breaks things in this particular way. The next update shouldn't break. Thanks for the tip!
    Last edited by Zygor Dev 1; May 8, 2020, 10:10 AM.

    Comment

    Working...
    X