From ae113ce81a88cb17c9b6fd0bf056f20ff5c3a802 Mon Sep 17 00:00:00 2001 From: cora Date: Sun, 20 Oct 2024 18:20:23 +0200 Subject: [PATCH] Rename minetest to luanti in CONTRIBUTING.md --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 61985923c..3136e4850 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,7 +17,7 @@ reference when implementing new features. While the primary goal of Mineclonia is to clone Minecraft gameplay, sometimes contributions containing minor deviations from Minecraft will be included. These -deviations should be motivated either by Minetest engine limitations or other +deviations should be motivated either by Luanti engine limitations or other technical difficulties replicating Minecraft behaviour. The addition of bonus features not found in Minecraft will generally not be accepted. Most of the time we will suggest putting such features in a separate mod since Mineclonia has @@ -31,7 +31,7 @@ textures must come from sources which allow their use. ## Code Guidelines * Each mod must provide `mod.conf`. * Mod names are snake case, and newly added mods start with `mcl_`, e.g. - `mcl_core`, `mcl_farming`, `mcl_monster_eggs`. Keep in mind Minetest does not + `mcl_core`, `mcl_farming`, `mcl_monster_eggs`. Keep in mind Luanti does not support capital letters in mod names. * To export functions, store them inside a global table named like the mod, e.g. @@ -57,7 +57,7 @@ function mcl_example.do_something() end ``` -* Use modern Minetest API, e.g. no usage of `minetest.env` +* Use modern Luanti API, e.g. no usage of `minetest.env` * Tabs should be used for indent, spaces for alignment, e.g. ```lua