Skip to content

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
impulsh committed Feb 25, 2020
1 parent 65d3f8a commit 93e6b7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gamemode/core/derma/cl_config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ function PANEL:Populate()
end

function PANEL:UpdatePlugin(uniqueID, bEnabled)
for k, v in pairs(self:GetRows()) do
for _, v in pairs(self:GetRows()) do
if (v.id == uniqueID) then
v:SetValue(bEnabled, true)
end
Expand All @@ -171,7 +171,7 @@ end

-- called from Populate and from the ixConfigUnloadedList net message
function PANEL:UpdateUnloaded(bNoSizeToContents)
for k, v in pairs(self:GetRows()) do
for _, v in pairs(self:GetRows()) do
if (ix.plugin.unloaded[v.id]) then
v:SetValue(false, true)
end
Expand Down
1 change: 0 additions & 1 deletion gamemode/core/derma/cl_menu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,6 @@ end
function PANEL:PopulateTabs()
local default
local tabs = {}
local sections = {}

hook.Run("CreateMenuButtons", tabs)

Expand Down

0 comments on commit 93e6b7e

Please sign in to comment.