6 lines
92 B
Lua
6 lines
92 B
Lua
local moduleExists = pcall(require, "custom")
|
|
|
|
if moduleExists then
|
|
require "custom"
|
|
end
|