# HG changeset patch # User Farmbuyer of US-Kilrogg # Date 1322683240 0 # Node ID 3961b0cc46421cd3d5218b1f7c3db4b2fd12ace6 # Parent 89babe1c1f6e65136f5d441e99b739897af3b49b TOC bump. Work around mature language filter bug. diff -r 89babe1c1f6e -r 3961b0cc4642 GuildDelta.toc --- a/GuildDelta.toc Tue Jun 28 17:22:08 2011 +0000 +++ b/GuildDelta.toc Wed Nov 30 20:00:40 2011 +0000 @@ -1,8 +1,8 @@ -## Interface: 40200 +## Interface: 40300 ## Title: Guild Deltas ## Version: @project-version@ ## Notes: On login, displays changes to your guild since the last time you logged in. -## Author: Farmbuyer of Kilrogg +## Author: Farmbuyer of US-Kilrogg ## SavedVariables: GuildDeltaSV ## OptionalDeps: Ace3 diff -r 89babe1c1f6e -r 3961b0cc4642 gd.lua --- a/gd.lua Tue Jun 28 17:22:08 2011 +0000 +++ b/gd.lua Wed Nov 30 20:00:40 2011 +0000 @@ -224,6 +224,8 @@ function addon:current_guild_info (N) local ret = {} + local swearing = GetCVar("profanityFilter") + SetCVar ("profanityFilter", "0") for i = 1, N do local name,rank_as_string,_,level,_,_,publicnote,officernote = GetGuildRosterInfo(i) -- This technically does not work out to the same as A?B:C, combined @@ -242,6 +244,7 @@ end end table.sort(ret, function (l,r) return l.name < r.name end) + SetCVar ("profanityFilter", swearing) return ret end