minetest_statistic_awards/init.lua

14 lines
495 B
Lua
Raw Permalink Normal View History

2018-12-06 05:05:40 -08:00
statistic_awards = {}
statistic_awards.path = minetest.get_modpath("statistic_awards")
statistic_awards.modname = minetest.get_current_modname()
2019-02-14 04:59:30 -08:00
local S = dofile(statistic_awards.path .. "/intllib.lua")
statistic_awards.intllib = S
2018-12-06 05:05:40 -08:00
2018-12-23 01:18:24 -08:00
-- import settingtypes.txt
basic_functions.import_settingtype(statistic_awards.path .. "/settingtypes.txt")
2018-12-06 05:05:40 -08:00
dofile(statistic_awards.path .. "/config.lua")
dofile(statistic_awards.path .. "/awards.lua")
dofile(statistic_awards.path .. "/abm.lua")