mirror of
https://github.com/Wyrrrd/Autofilter.git
synced 2026-04-23 22:23:18 +02:00
c36e55c961
Also moved graphics to be used by both integrations
10 lines
284 B
Lua
10 lines
284 B
Lua
require("integrations.wiki.wiki")
|
|
|
|
if script.active_mods["wiki"] then
|
|
local initialize_wiki = function()
|
|
remote.call("wiki","register_mod_wiki",autofilter_wiki)
|
|
end
|
|
|
|
script.on_init(function() initialize_wiki() end)
|
|
script.on_load(function() initialize_wiki() end)
|
|
end |