blob: 757938415540af8a97f767115b99d6232bfdfa7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
furrybot = {}
local http = minetest.request_http_api()
local env = minetest.request_insecure_environment()
local storage = minetest.get_mod_storage()
libclamity.register_on_chat_message(function(...)
furrybot.parse_message(...)
end)
loadfile(minetest.get_modpath("furrybot") .. "/bot.lua")()(http, env, storage)
|