diff options
Diffstat (limited to 'gamemode/shared/system_admin.lua')
| -rw-r--r-- | gamemode/shared/system_admin.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gamemode/shared/system_admin.lua b/gamemode/shared/system_admin.lua index 09b223b..79a54d6 100644 --- a/gamemode/shared/system_admin.lua +++ b/gamemode/shared/system_admin.lua @@ -88,7 +88,7 @@ if (SERVER) then if(!arg[1]) then return end
for k,v in pairs(player.GetAll()) do
if(v:Name():lower():find(arg[1]:lower())) then
- v:SetAlpha(0)
+ v:SetColor(Color(0,0,0,0))
end
end
end)
@@ -99,7 +99,7 @@ if (SERVER) then if(!arg[1]) then return end
for k,v in pairs(player.GetAll()) do
if(v:Name():lower():find(arg[1]:lower())) then
- v:SetAlpha(255)
+ v:SetColor(Color(255,255,255,255))
end
end
end)
|
