diff --git a/games/devtest/LICENSE.txt b/games/devtest/LICENSE.txt index 71bd0e596016..a76b0a17e292 100644 --- a/games/devtest/LICENSE.txt +++ b/games/devtest/LICENSE.txt @@ -1,4 +1,4 @@ License information for Development Test ---------------------------------------- -The same license as for Minetest applies. +The same license as for Luanti applies. diff --git a/games/devtest/game.conf b/games/devtest/game.conf index 8184881a22a1..e79cc9489a16 100644 --- a/games/devtest/game.conf +++ b/games/devtest/game.conf @@ -1,4 +1,4 @@ title = Development Test -description = Testing environment to help with testing the engine features of Minetest. It can also be helpful in mod development. +description = Testing environment to help with testing the engine features of Luanti. It can also be helpful in mod development. first_mod = first_mod last_mod = last_mod diff --git a/games/devtest/mods/broken/init.lua b/games/devtest/mods/broken/init.lua index 04993ca16a3b..7bbf49856749 100644 --- a/games/devtest/mods/broken/init.lua +++ b/games/devtest/mods/broken/init.lua @@ -1,4 +1,4 @@ --- Register stuff with empty definitions to test if Minetest fallback options +-- Register stuff with empty definitions to test if Luanti fallback options -- for these things work properly. -- The itemstrings are deliberately kept descriptive to keep them easy to diff --git a/games/devtest/mods/testnodes/drawtypes.lua b/games/devtest/mods/testnodes/drawtypes.lua index 4a657b7391b7..06bafbc24d63 100644 --- a/games/devtest/mods/testnodes/drawtypes.lua +++ b/games/devtest/mods/testnodes/drawtypes.lua @@ -1,5 +1,5 @@ --[[ Drawtype Test: This file tests out and provides examples for -all drawtypes in Minetest. It is attempted to keep the node +all drawtypes in Luanti. It is attempted to keep the node definitions as simple and minimal as possible to keep side-effects to a minimum. diff --git a/games/devtest/mods/testnodes/textures.lua b/games/devtest/mods/testnodes/textures.lua index b95fbd62e10c..c0eefcf3c285 100644 --- a/games/devtest/mods/testnodes/textures.lua +++ b/games/devtest/mods/testnodes/textures.lua @@ -255,17 +255,17 @@ data_ck = nil The following nodes can be used to demonstrate the TGA format support. -Minetest supports TGA types 1, 2, 3 & 10. While adding the support for +Luanti supports TGA types 1, 2, 3 & 10. While adding the support for TGA type 9 (RLE-compressed, color-mapped) is easy, it is not advisable -to do so, as it is not backwards compatible with any Minetest pre-5.5; +to do so, as it is not backwards compatible with any engine version pre-5.5; content creators should therefore either use TGA type 1 or 10, or PNG. TODO: Types 1, 2 & 10 should have two test nodes each (i.e. bottom-top and top-bottom) for 16bpp (A1R5G5B5), 24bpp (B8G8R8), 32bpp (B8G8R8A8) colors. -Note: Minetest requires the optional TGA footer for a texture to load. -If a TGA image does not load in Minetest, append eight (8) null bytes, +Note: Luanti requires the optional TGA footer for a texture to load. +If a TGA image does not load in Luanti, append eight (8) null bytes, then the string “TRUEVISION-XFILE.”, then another null byte. ]]-- diff --git a/games/devtest/mods/testpathfinder/mod.conf b/games/devtest/mods/testpathfinder/mod.conf index e6034ae8c9f5..6b2c0e355150 100644 --- a/games/devtest/mods/testpathfinder/mod.conf +++ b/games/devtest/mods/testpathfinder/mod.conf @@ -1,2 +1,2 @@ name = testpathfinder -description = Tool to test Minetest's pathfinder function +description = Tool to test Luanti's pathfinder function diff --git a/games/devtest/mods/unittests/crafting.lua b/games/devtest/mods/unittests/crafting.lua index 8c16d3efb3f8..d5ffc2e1f519 100644 --- a/games/devtest/mods/unittests/crafting.lua +++ b/games/devtest/mods/unittests/crafting.lua @@ -87,7 +87,7 @@ local function test_get_craft_result() minetest.log("info", "[unittests] repairable tool crafting output.item:to_table(): "..dump(output.item:to_table())) assert(output.item:get_name() == "unittests:repairable_tool") -- Test the wear value. - -- See src/craftdef.cpp in Minetest source code for the formula. The formula to calculate + -- See src/craftdef.cpp in Luanti source code for the formula. The formula to calculate -- the value 51187 is: -- 65536 - ((65536-60000)+(65536-60000)) + floor(additonal_wear * 65536 + 0.5) = 51187 -- where additional_wear = 0.05