Removed useless files

This commit is contained in:
Cooldude2606
2020-03-29 22:50:21 +01:00
parent 3141b8a75f
commit 6a2f99b069
56 changed files with 499 additions and 1846 deletions

9
overrides/require.lua Normal file
View File

@@ -0,0 +1,9 @@
--luacheck:ignore global require
local loaded = package.loaded
local raw_require = require
function require(path)
return loaded[path] or error('Can only require files at runtime that have been required in the control stage.', 2)
end
return raw_require