summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWuzzy <Wuzzy2@mail.ru>2018-03-25 22:11:54 +0200
committerWuzzy <Wuzzy2@mail.ru>2018-03-25 22:11:54 +0200
commit1187c2e7094e46900e5d089eea7c3085c8e0dc11 (patch)
treefc98b9ae624291d0a97153927a484d6ace51aaf0
parent7872c71a09aeb80e48ae41a58b6850615cc6535d (diff)
Subgame → game
-rw-r--r--API.md4
-rw-r--r--README.md4
2 files changed, 4 insertions, 4 deletions
diff --git a/API.md b/API.md
index 3c20a12..784a666 100644
--- a/API.md
+++ b/API.md
@@ -41,7 +41,7 @@ this mod is capable of and how these use cases could be implemented.
### Simple use case: Minetest basics
Let's say you want to write in free form short help texts about the basic
-concepts of Minetest or your subgame. First you could define a category
+concepts of Minetest or your game. First you could define a category
called “Basics”, the data for each of its entry is just a free form text.
The template function simply creates a formspec where this free form
text is displayed.
@@ -233,7 +233,7 @@ The help starts with this default order:
This function can be called at any time, but it recommended to only call
this function once for the entire server session and to only call it
-from subgame mods, to avoid contradictions. If this function is called a
+from game mods, to avoid contradictions. If this function is called a
second time by any mod, a warning is written into the log.
#### Parameters
diff --git a/README.md b/README.md
index 5731495..d1715b9 100644
--- a/README.md
+++ b/README.md
@@ -37,9 +37,9 @@ stored in the world directory in the file `doc.mt`. You can safely reset
the viewed/revealed state of all players by deleting this file. Players
then need to start over revealing all entries.
-## For modders and subgame authors
+## For modders and game authors
This mod helps you in creating extensive and flexible help entries for your
-mods or subgame. You can write about basically anything in the presentation
+mods or game. You can write about basically anything in the presentation
you prefer.
To get started, read `API.md` in the directory of this mod.