Skip to content

Commit

Permalink
anti-spam update
Browse files Browse the repository at this point in the history
  • Loading branch information
funkydude committed Dec 28, 2016
1 parent 0af4125 commit 565733a
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 301 deletions.
20 changes: 11 additions & 9 deletions BadBoy.lua

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions BadBoy.toc
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ embeds.xml

Locale.lua
SimpleOptions.lua
Generate.lua
BadBoy.lua

25 changes: 25 additions & 0 deletions Generate.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

local _, t = ...

t.gen = function(entry)
local tbl = {}
local pos = 0
local str = ""
for i = 1, select("#", strsplit("^", entry)) do
local db = select(i, strsplit("^", entry))
for j = 1, select("#", strsplit(",", db)) do
local text = select(j, strsplit(",", db))
local n = tonumber(text)
if j == 1 then
if pos > 0 then
tbl[pos] = str
str = ""
end
pos = pos + 1
end
str = str .. string.char(n)
end
end
tbl[pos] = str
return tbl
end
287 changes: 0 additions & 287 deletions Libs/AceSerializer-3.0/AceSerializer-3.0.lua

This file was deleted.

4 changes: 0 additions & 4 deletions Libs/AceSerializer-3.0/AceSerializer-3.0.xml

This file was deleted.

1 change: 0 additions & 1 deletion embeds.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
..\FrameXML\UI.xsd">
<Script file="Libs\LibStub\LibStub.lua"/>
<Include file="Libs\AceSerializer-3.0\AceSerializer-3.0.xml"/>
<!--@no-lib-strip@-->
<Include file="Libs\LibChatAnims\LibChatAnims.xml"/>
<!--@end-no-lib-strip@-->
Expand Down

0 comments on commit 565733a

Please sign in to comment.