19 lines
461 B
Lua
19 lines
461 B
Lua
--[[
|
|
|
|
Towntest for Minetest
|
|
|
|
Copyright (c) 2012 cornernote, Brett O'Donnell <cornernote@gmail.com>
|
|
Source Code: https://github.com/cornernote/minetest-particles
|
|
License: GPLv3
|
|
|
|
]]--
|
|
|
|
-- expose api
|
|
towntest = {}
|
|
|
|
-- unique game id, needed to cleanup npcs
|
|
towntest.game_id = math.random(100000000000)
|
|
|
|
-- log that we started
|
|
minetest.log("action", "[MOD]"..minetest.get_current_modname().." -- loaded from "..minetest.get_modpath(minetest.get_current_modname()))
|