LuaAPI: fix typos
authorWuzzy
Thu, 22 Mar 2018 19:44:46 +0000
changeset 1271 006fe546bd26
parent 1270 2c4320387c2f
child 1272 4f93f837c427
LuaAPI: fix typos
LuaAPI.wiki
--- a/LuaAPI.wiki	Thu Mar 22 19:40:41 2018 +0000
+++ b/LuaAPI.wiki	Thu Mar 22 19:44:46 2018 +0000
@@ -993,7 +993,9 @@
 ==== `Explode(x, y, radius[, options])` (0.9.24) ====
 Cause an explosion or erase land, push or damage gears.
 
-By default, causes an explosion at the coordinates `(x, y)` with the given `radius`. Explosions destroy land, and damage and push gears in its radius. Assuming 100% damage, the explosion damage at the center equals the explosion radius.
+By default, an explosion destroys a circular piece of land and damages and pushes gears in its radius.
+
+The explosion occours at coordinates `(x, y)` with the given `radius`. Assuming 100% damage, the explosion damage at the center equals the explosion radius.
 
 `options` is a bitmask which can be used to tweak how the explosion behaves:
 
@@ -1016,10 +1018,10 @@
 -- Simlpe explosion without sound
 Explode(100, 50, 50, 0)
 
--- Fake explosion which only cause a push but deals no damage to gears an terrain
+-- Fake explosion which only pushes gears but deals no damage to gears and terrain
 Explode(500, 1000, 50, EXPLAutoSound + EXPLNoDamage + EXPLDontDraw)
 
--- Erase land without side effects:
+-- Erase a circle of land without side effects
 Explode(500, 100, 100, EXPLNoDamage + EXPLDoNotTouchAny + EXPLNoGfx)
 </code>