View Single Post
08-13-20, 03:00 PM   #2
liquidbase
A Warpwood Thunder Caller
 
liquidbase's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2010
Posts: 97
The character name is missing here. Either this cannot be read out correctly or it does not exist, so the variable fullName is nil and the Ambiguate function outputs an error.

Here you would have to ask whether the variable is not nil, something like:
Lua Code:
  1. if fullName ~= nil then
  2.     table.insert(guildPlayers, Ambiguate(fullName, "guild"))
  3. end
  Reply With Quote