Fix some issues with minetest.clear_craft (#8712)
[oweals/minetest.git] / games / minimal / mods / test / init.lua
1 --
2 -- Minimal Development Test
3 -- Mod: test
4 --
5
6
7 -- Try out PseudoRandom
8 pseudo = PseudoRandom(13)
9 assert(pseudo:next() == 22290)
10 assert(pseudo:next() == 13854)
11
12 local modpath = minetest.get_modpath("test")
13 dofile(modpath .. "/player.lua")
14 dofile(modpath .. "/formspec.lua")
15 dofile(modpath .. "/crafting.lua")