This commit is contained in:
HybridDog 2015-09-10 22:54:26 +02:00
commit 1e70b582d4
4 changed files with 16 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
## Generic ignorable patterns and files
*~
debug.txt

1
LICENSE.txt Normal file
View File

@ -0,0 +1 @@
see posts at https://forum.minetest.net/viewtopic.php?p=182724#p182724

1
README.md Normal file
View File

@ -0,0 +1 @@
https://forum.minetest.net/viewtopic.php?p=182724#p182724

11
init.lua Normal file
View File

@ -0,0 +1,11 @@
local load_time_start = os.clock()
local time = math.floor(tonumber(os.clock()-load_time_start)*100+0.5)/100
local msg = "[member_mod] loaded after ca. "..time
if time > 0.05 then
print(msg)
else
minetest.log("info", msg)
end