Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gamemode/core/libs/thirdparty/cl_ikon.lua
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ end
concommand.Add("ix_flushicon", function()
local root = "helix/icons/" .. schemaName

for _, v in pairs(file.Find(root .. "/*.png", "DATA")) do
for _, v in ipairs(file.Find(root .. "/*.png", "DATA")) do
file.Delete(root .. "/" .. v)
end

Expand Down
2 changes: 1 addition & 1 deletion gamemode/core/sh_util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ do
nearestDist = util.DistanceToLine(searchCenter, forward, point)
end

for _, v in pairs(ents.FindInSphere(searchCenter, 80)) do
for _, v in ipairs(ents.FindInSphere(searchCenter, 80)) do
if (!ix.util.IsUseableEntity(v, FCAP_USE_IN_RADIUS)) then
continue
end
Expand Down