This commit is contained in:
random-geek 2020-07-03 22:07:49 -07:00
parent 9f540dfd31
commit ba90b7c667
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ If you wish to install from a downloaded copy instead, install `setuptools` as u
Minetest stores and transfers map data in *mapblocks*, which are similar to Minecraft's *chunks*. A single mapblock is a cubical, 16x16x16 node area of the map. The lower southwestern corner (-X, -Y, -Z) of a mapblock is always at coordinates divisible by 16, e.g. (0, 16, -48) or the like.
Mapblocks are stored in a *map database*, usually `map.sqlite`.
Most commands require mapblocks to be already generated to work. This can be acheived by either exploring the area in-game, or by using Minetest's built-in `/emergeblocks` command.
Most commands require mapblocks to be already generated to work. This can be achieved by either exploring the area in-game, or by using Minetest's built-in `/emergeblocks` command.
#### General usage

View File

@ -781,7 +781,7 @@ class MapEditInstance:
"""Verifies certain input and handles the execution of commands."""
STANDARD_WARNING = (
"This tool can permanantly damage your Minetest world.\n"
"This tool can permanently damage your Minetest world.\n"
"Always EXIT Minetest and BACK UP the map database before use.")
def __init__(self):