Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
mexikoedi committed Sep 13, 2024
1 parent f10bd97 commit e016019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gamemodes/terrortown/gamemode/client/cl_player_ext.lua
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ net.Receive("TTT_Equipment", UpdateEquipment)

-- Deletes old avatars and caches new ones
local function CacheAllPlayerAvatars(ply)
local plys = IsPlayer(ply) and {ply} or player.GetAll()
local plys = IsPlayer(ply) and { ply } or player.GetAll()

for i = 1, #plys do
local plyid64 = plys[i]:SteamID64()
Expand Down

0 comments on commit e016019

Please sign in to comment.