OrderHallCommander

OrderHallCommander

3M Downloads

Null error for tooltips on Followers

Xruptor opened this issue ยท 1 comments

commented

local link = C_Garrison.GetFollowerLink(self.followerID);

Sometimes link is returned null. It causes a follower tooltip bug. As a suggestion you may want to do a null check.

Under line 466 I suggest the following:
if not link then return end

It's simple and should prevent the error from popping up on the quick completion screen or when viewing missions.

commented

Fixed