mirror of
https://github.com/JonnyBro/beatrun.git
synced 2024-12-28 12:53:02 +05:00
maybe this fixes something, dunno
This commit is contained in:
parent
ea0ae41bfc
commit
453a6abbfc
1 changed files with 9 additions and 9 deletions
|
@ -2,20 +2,20 @@ AddCSLuaFile("cl_init.lua")
|
||||||
AddCSLuaFile("shared.lua")
|
AddCSLuaFile("shared.lua")
|
||||||
include("shared.lua")
|
include("shared.lua")
|
||||||
|
|
||||||
for _, v in ipairs(file.Find("gamemodes/beatrun/gamemode/cl/*.lua", "GAME", "nameasc")) do
|
for _, v in ipairs(file.Find("gamemodes/beatrun/gamemode/sh/*.lua", "GAME")) do
|
||||||
|
print(v)
|
||||||
|
|
||||||
|
AddCSLuaFile("sh/" .. v)
|
||||||
|
include("sh/" .. v)
|
||||||
|
end
|
||||||
|
|
||||||
|
for _, v in ipairs(file.Find("gamemodes/beatrun/gamemode/cl/*.lua", "GAME")) do
|
||||||
print(v)
|
print(v)
|
||||||
|
|
||||||
AddCSLuaFile("cl/" .. v)
|
AddCSLuaFile("cl/" .. v)
|
||||||
end
|
end
|
||||||
|
|
||||||
for _, v in ipairs(file.Find("gamemodes/beatrun/gamemode/sh/*.lua", "GAME", "nameasc")) do
|
for _, v in ipairs(file.Find("gamemodes/beatrun/gamemode/sv/*.lua", "GAME")) do
|
||||||
print(v)
|
|
||||||
|
|
||||||
include("sh/" .. v)
|
|
||||||
AddCSLuaFile("sh/" .. v)
|
|
||||||
end
|
|
||||||
|
|
||||||
for _, v in ipairs(file.Find("gamemodes/beatrun/gamemode/sv/*.lua", "GAME", "nameasc")) do
|
|
||||||
print(v)
|
print(v)
|
||||||
|
|
||||||
include("sv/" .. v)
|
include("sv/" .. v)
|
||||||
|
|
Loading…
Reference in a new issue