diff options
| author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-07-26 14:42:33 +0200 |
|---|---|---|
| committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-07-26 14:42:33 +0200 |
| commit | 9194165cf18149952df0a677f7144d9a7e91b229 (patch) | |
| tree | 2419616fdb340d87377c4a40bbe91080a283c37c /clientmods | |
| parent | 064c25caa14f2e7564992c21f27de753985062e1 (diff) | |
| download | dragonfireclient-9194165cf18149952df0a677f7144d9a7e91b229.tar.xz | |
Added autodig, moved chat
Diffstat (limited to 'clientmods')
| -rw-r--r-- | clientmods/mods.conf | 1 | ||||
| -rw-r--r-- | clientmods/worldeater/init.lua | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/clientmods/mods.conf b/clientmods/mods.conf index 224fcb31d..c0feec9fb 100644 --- a/clientmods/mods.conf +++ b/clientmods/mods.conf @@ -7,3 +7,4 @@ load_mod_enderchest = true load_mod_cheat_hud = false load_mod_misc = true load_mod_mapbot = false +load_mod_worldeater = false diff --git a/clientmods/worldeater/init.lua b/clientmods/worldeater/init.lua new file mode 100644 index 000000000..a10af5f65 --- /dev/null +++ b/clientmods/worldeater/init.lua @@ -0,0 +1,7 @@ +local x, y, z = 0, 0, 0 + +function loop() + local nx, ny, nz = x + 100, y + 100, z + 100 +end + +minetest.register_on_connect(loop) |
