mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 03:25:23 +09:00
8 lines
224 B
Lua
8 lines
224 B
Lua
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 |