diff options
author | Perttu Ahola <celeron55@gmail.com> | 2012-04-05 21:42:33 +0300 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-04-05 21:42:33 +0300 |
commit | 41073903373cb31bd2e946988875b848b2c2f216 (patch) | |
tree | f68ab808283a28229adf1e552c2b89b3aa5f204a /games/minimal/mods/default/init.lua | |
parent | e74da72b824dfddacfb1c5386721d7094c0b7a94 (diff) | |
download | minetest-41073903373cb31bd2e946988875b848b2c2f216.tar.gz minetest-41073903373cb31bd2e946988875b848b2c2f216.tar.bz2 minetest-41073903373cb31bd2e946988875b848b2c2f216.zip |
Make the minimal development test somewhat playable by adding ore generation and removing the player visual switch test
Diffstat (limited to 'games/minimal/mods/default/init.lua')
-rw-r--r-- | games/minimal/mods/default/init.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/games/minimal/mods/default/init.lua b/games/minimal/mods/default/init.lua index b408e8cce..952c114db 100644 --- a/games/minimal/mods/default/init.lua +++ b/games/minimal/mods/default/init.lua @@ -11,6 +11,9 @@ LIGHT_MAX = 14 -- Definitions made by this mod that other mods can use too default = {} +-- Load other files +dofile(minetest.get_modpath("default").."/mapgen.lua") + -- -- Tool definition -- |