mirror of
https://github.com/NeoFlock/neonucleus.git
synced 2025-11-14 22:44:27 +01:00
8 lines
147 B
Lua
8 lines
147 B
Lua
-- Keeps track of loaded scripts to retain local values between invocation
|
|
-- of their command callbacks.
|
|
local rc = {}
|
|
rc.loaded = {}
|
|
|
|
return rc
|
|
|