Fix menu spacer.

master
Icedream 2015-04-23 22:22:32 +02:00
parent 9b6e651656
commit 449bd8e2db
1 changed files with 2 additions and 2 deletions

View File

@ -59,6 +59,8 @@ local function Apply(menu, taunts)
return string.lower(a.key) < string.lower(b.key) return string.lower(a.key) < string.lower(b.key)
end) end)
menu:AddSpacer()
-- sort categories -- sort categories
local categories = {} local categories = {}
for key,value in pairs(taunts.categories) do for key,value in pairs(taunts.categories) do
@ -79,8 +81,6 @@ local function Apply(menu, taunts)
PlayTaunt(item.value) PlayTaunt(item.value)
end) end)
end end
menu:AddSpacer()
end end
local function CreateMenu() local function CreateMenu()