diff options
author | madmaxoft <github@xoft.cz> | 2013-10-18 21:29:38 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-10-18 21:29:38 +0200 |
commit | 07ba48840da5447e12d8c54a20c0f049a3ec67a7 (patch) | |
tree | 1e5a08adea2f60940c4bca3269abaa3ebae360e5 /MCServer/Plugins/APIDump/APIDesc.lua | |
parent | APIDump: Added prettify's license. (diff) | |
download | cuberite-07ba48840da5447e12d8c54a20c0f049a3ec67a7.tar cuberite-07ba48840da5447e12d8c54a20c0f049a3ec67a7.tar.gz cuberite-07ba48840da5447e12d8c54a20c0f049a3ec67a7.tar.bz2 cuberite-07ba48840da5447e12d8c54a20c0f049a3ec67a7.tar.lz cuberite-07ba48840da5447e12d8c54a20c0f049a3ec67a7.tar.xz cuberite-07ba48840da5447e12d8c54a20c0f049a3ec67a7.tar.zst cuberite-07ba48840da5447e12d8c54a20c0f049a3ec67a7.zip |
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/APIDump/APIDesc.lua | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua index 4961c9baf..0a1e91a54 100644 --- a/MCServer/Plugins/APIDump/APIDesc.lua +++ b/MCServer/Plugins/APIDump/APIDesc.lua @@ -31,6 +31,11 @@ g_APIDesc = ConstantName = { Notes = "Notes about the constant" }, } , + Variables = + { + VariableName = { Type = "string", Notes = "Notes about the variable" }, + } , + AdditionalInfo = -- Paragraphs to be exported after the function definitions table { { @@ -610,8 +615,8 @@ World:ForEachChestInChunk(Player:GetChunkX(), Player:GetChunkZ(), }, Variables = { - p1 = { Notes = "{{Vector3i}} of one corner. Usually the lesser of the two coords in each set" }, - p2 = { Notes = "{{Vector3i}} of the other corner. Usually the larger of the two coords in each set" }, + p1 = { Type = "{{Vector3i}}", Notes = "The first corner. Usually the lesser of the two coords in each set" }, + p2 = { Type = "{{Vector3i}}", Notes = "The second corner. Usually the larger of the two coords in each set" }, }, }, |