From 92bc32887f3e46616d2f4c0440f7002a6d92fcc1 Mon Sep 17 00:00:00 2001 From: kakalak-lumberJack Date: Thu, 22 Feb 2018 20:21:29 -0500 Subject: [PATCH] Basic Map Operations: Fix two typos --- en/chapters/environment.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/chapters/environment.md b/en/chapters/environment.md index 49bc1d5..cb1b544 100644 --- a/en/chapters/environment.md +++ b/en/chapters/environment.md @@ -167,7 +167,7 @@ In fact, remove_node will call set_node with name being air. ## Loading Blocks -You can use `minetest.emerge_area` load map blocks. Emerge area is asynchronous, +You can use `minetest.emerge_area` to load map blocks. Emerge area is asynchronous, meaning the the blocks won't be loaded instantly. Instead they will be loaded soon in the future, and the callback will be called each time. @@ -223,5 +223,5 @@ minetest.delete_area(pos1, pos2) {% endhighlight %} This will delete all map blocks in that area, *inclusive*. This means that some -nodes will be deleted outside the are as they will be on a mapblock which overlaps +nodes will be deleted outside the area as they will be on a mapblock which overlaps the area bounds.