diff --git a/0_gameconfig.lua b/0_gameconfig.lua index 9e1c1ed..a609ec9 100644 --- a/0_gameconfig.lua +++ b/0_gameconfig.lua @@ -2,10 +2,10 @@ All mobs in this mod must use variables in this table, instead of hardcoding the itemstring. This way, external mods are enabled to replace the itemstrings to provide -their own items and subgame integration is made much simpler. +their own items and game integration is made much simpler. An item IDs is supposed to be overwritten by adding -mobs_mc.override.items["example:item"] in a subgame mod +mobs_mc.override.items["example:item"] in a game mod with name "mobs_mc_gameconfig". ]] @@ -147,7 +147,7 @@ mobs_mc.items = { -- Light blue intentionally missing -- Special items - music_discs = {}, -- No music discs by default; used by creeper. Override this if your subgame has music discs. + music_discs = {}, -- No music discs by default; used by creeper. Override this if your game has music discs. } -- Tables for attracting, feeding and breeding mobs diff --git a/README.md b/README.md index 9d05149..d3ac29a 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ This mod adds mobs which closely resemble the mobs from the game Minecraft, vers ## Useful information for developers -### Subgame integration -Want to include this mod in your subgame? Read `gameconfig.md`. +### Game integration +Want to include this mod in your game? Read `gameconfig.md`. ### Links diff --git a/gameconfig.md b/gameconfig.md index dabfb93..8394a05 100644 --- a/gameconfig.md +++ b/gameconfig.md @@ -1,8 +1,8 @@ -# Subgame integration help +# Game integration help -This mod has been designed to make subgame integration rather easy. Ideally, it should be possible to include this mod verbatim in your subgame, with modifications only done by an external mod. +This mod has been designed to make game integration rather easy. Ideally, it should be possible to include this mod verbatim in your game, with modifications only done by an external mod. -To integrate this mod in a subgame, you have to do 2 things: Adding the mod, and adding another mod which tells `mobs_mc` which items to use. The idea is that `mobs_mc` should work with any items. Specifically, these are the steps you need to follow: +To integrate this mod in a game, you have to do 2 things: Adding the mod, and adding another mod which tells `mobs_mc` which items to use. The idea is that `mobs_mc` should work with any items. Specifically, these are the steps you need to follow: * Add the `mobs_mc` mod and its dependencies * Add a mod with name “`mobs_mc_gameconfig`” @@ -21,7 +21,7 @@ Some things to note: * Every override is optional, but explicitly setting all the item overrides is strongly recommended * `mobs_mc` ships many (but not all) items on its own. If not item name override is set, the `mobs_mc` item is used - * You decide whether your subgame defines its own items, outside of `mobs_mc` or if you let `mobs_mc` do the work. + * You decide whether your game defines its own items, outside of `mobs_mc` or if you let `mobs_mc` do the work. * Make sure to avoid duplicate items! * After finishing this, throughly test this * Without `mobs_mc_gameconfig`, the mod assumes Minetest Game items