mirror of
https://github.com/CapsAdmin/wowozela.git
synced 2025-03-04 03:13:27 -05:00
Another Optimizaton
This commit is contained in:
parent
41622b62e3
commit
0430c2ae7a
@ -392,27 +392,19 @@ if CLIENT then
|
||||
self.CategoriesRev[v] = table.insert(self.Categories, v)
|
||||
end
|
||||
|
||||
for k, v in ipairs(wowozela.GetSamples()) do
|
||||
if not self.CategoriesRev[v.category] then
|
||||
self.CategoriesRev[v.category] = table.insert(self.Categories, v.category)
|
||||
end
|
||||
end
|
||||
|
||||
local defaultPage = wowozela.defaultpage and wowozela.defaultpage:GetString()
|
||||
if defaultPage and defaultPage ~= "" then
|
||||
self.CurrentPageIndex = self.CategoriesRev[string.lower(defaultPage)] or 1
|
||||
end
|
||||
|
||||
if self.CategoriesRev["custom"] then
|
||||
self.Pages[self.CategoriesRev["custom"]] = {{}, {}, {}, {}, {}, {}, {}, {}, {}, {}}
|
||||
end
|
||||
|
||||
for k, v in ipairs(wowozela.GetSamples()) do
|
||||
local catIndex = self.CategoriesRev[v.category]
|
||||
if catIndex then
|
||||
if not self.Pages[catIndex] then self.Pages[catIndex] = {} end
|
||||
table.insert(self.Pages[catIndex], v)
|
||||
if not catIndex then
|
||||
catIndex = table.insert(self.Categories, v.category)
|
||||
self.CategoriesRev[v.category] = catIndex
|
||||
end
|
||||
|
||||
if not self.Pages[catIndex] then self.Pages[catIndex] = {} end
|
||||
table.insert(self.Pages[catIndex], v)
|
||||
end
|
||||
|
||||
if file.Exists("wowozela_custom_page.txt", "DATA") and self.CategoriesRev["custom"] then
|
||||
@ -427,6 +419,11 @@ if CLIENT then
|
||||
|
||||
self:LoadCustoms()
|
||||
end
|
||||
|
||||
local defaultPage = wowozela.defaultpage and wowozela.defaultpage:GetString()
|
||||
if defaultPage and defaultPage ~= "" then
|
||||
self.CurrentPageIndex = self.CategoriesRev[string.lower(defaultPage)] or 1
|
||||
end
|
||||
end
|
||||
|
||||
concommand.Add("wowozela_reset_custom_page", function()
|
||||
|
Loading…
Reference in New Issue
Block a user