summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-03-15 08:23:06 +0100
committermadmaxoft <github@xoft.cz>2014-03-15 08:38:14 +0100
commitd364c7befce884cac2347459512376937d2b8e69 (patch)
treef367428f8e7a8de94e08e2ac725cf65008c3fd08
parentMerge pull request #800 from mc-server/EntireCommandError (diff)
downloadcuberite-d364c7befce884cac2347459512376937d2b8e69.tar
cuberite-d364c7befce884cac2347459512376937d2b8e69.tar.gz
cuberite-d364c7befce884cac2347459512376937d2b8e69.tar.bz2
cuberite-d364c7befce884cac2347459512376937d2b8e69.tar.lz
cuberite-d364c7befce884cac2347459512376937d2b8e69.tar.xz
cuberite-d364c7befce884cac2347459512376937d2b8e69.tar.zst
cuberite-d364c7befce884cac2347459512376937d2b8e69.zip
-rw-r--r--MCServer/Plugins/APIDump/Classes/Geometry.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/MCServer/Plugins/APIDump/Classes/Geometry.lua b/MCServer/Plugins/APIDump/Classes/Geometry.lua
index 78cd94f0c..9887bfb89 100644
--- a/MCServer/Plugins/APIDump/Classes/Geometry.lua
+++ b/MCServer/Plugins/APIDump/Classes/Geometry.lua
@@ -53,7 +53,7 @@ return
{
Desc = [[
cCuboid offers some native support for integral-boundary cuboids. A cuboid internally consists of
- two {{Vector3i}}s. By default the cuboid doesn't make any assumptions about the defining points,
+ two {{Vector3i}}-s. By default the cuboid doesn't make any assumptions about the defining points,
but for most of the operations in the cCuboid class, the p1 member variable is expected to be the
minima and the p2 variable the maxima. The Sort() function guarantees this condition.</p>
<p>
@@ -63,6 +63,7 @@ return
{
constructor =
{
+ { Params = "", Return = "cCuboid", Notes = "Creates a new Cuboid object with all-zero coords" },
{ Params = "OtherCuboid", Return = "cCuboid", Notes = "Creates a new Cuboid object as a copy of OtherCuboid" },
{ Params = "{{Vector3i|Point1}}, {{Vector3i|Point2}}", Return = "cCuboid", Notes = "Creates a new Cuboid object with the specified points as its corners." },
{ Params = "X, Y, Z", Return = "cCuboid", Notes = "Creates a new Cuboid object with the specified point as both its corners (the cuboid has a size of 1 in each direction)." },