Showing results 1 to 2 of 2
Search took 0.00 seconds.
Search: Posts Made By: liquidbase
Forum: AddOn Help/Support 08-14-20, 12:27 AM
Replies: 4
Views: 5,443
Posted By liquidbase
GuildTaxes.lua @line...

GuildTaxes.lua @line 512
Replace
table.insert(guildPlayers, Ambiguate(fullName, "guild"))
with
if fullName ~= nil then
table.insert(guildPlayers, Ambiguate(fullName, "guild"))
end
Forum: AddOn Help/Support 08-13-20, 03:00 PM
Replies: 4
Views: 5,443
Posted By liquidbase
The character name is missing here. Either this...

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...
Showing results 1 to 2 of 2