From 8719d773977b84be653c57f4068314f1e2810609 Mon Sep 17 00:00:00 2001 From: AlmTech Date: Wed, 11 Sep 2019 20:56:38 +0200 Subject: [PATCH] Fixed clients not mounting files --- gamemode/cl_init.lua | 2 +- gamemode/engine/core/client/cl_hud.lua | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/gamemode/cl_init.lua b/gamemode/cl_init.lua index 7f604a5..5fe7877 100644 --- a/gamemode/cl_init.lua +++ b/gamemode/cl_init.lua @@ -13,7 +13,7 @@ if CLIENT then -- Add all core files function Quantum.Client.Load() - local fol = GM.FolderName .. "/gamemode/core/" + local fol = GM.FolderName .. "/gamemode/engine/core/" -- Shared files local shFiles = file.Find( fol .. "/sh_*.lua", "LUA" ) diff --git a/gamemode/engine/core/client/cl_hud.lua b/gamemode/engine/core/client/cl_hud.lua index 9a04858..a589e93 100644 --- a/gamemode/engine/core/client/cl_hud.lua +++ b/gamemode/engine/core/client/cl_hud.lua @@ -14,7 +14,6 @@ hook.Add( "HUDShouldDraw", "Quantum_RemoveDefualtHUD", function( hudid ) return enabledHUDs[hudid] ~= nil end) - local scale = Quantum.Client.ResolutionScale local barW, barH = 250 * scale, 10 * scale local radius = 1 * scale