summaryrefslogtreecommitdiffstats
path: root/MCServer
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-03-11 22:43:52 +0100
committerMattes D <github@xoft.cz>2015-03-11 22:43:52 +0100
commit439eb8d6cb111fdc336c95aec497a8eb9ddf2df1 (patch)
treea8ceefb71e807fa5b0acba588e07737086ea8d1c /MCServer
parentMerge pull request #1804 from mc-server/streamlinetravis (diff)
parentFixed coding conventions for Pull Request #1807 (diff)
downloadcuberite-439eb8d6cb111fdc336c95aec497a8eb9ddf2df1.tar
cuberite-439eb8d6cb111fdc336c95aec497a8eb9ddf2df1.tar.gz
cuberite-439eb8d6cb111fdc336c95aec497a8eb9ddf2df1.tar.bz2
cuberite-439eb8d6cb111fdc336c95aec497a8eb9ddf2df1.tar.lz
cuberite-439eb8d6cb111fdc336c95aec497a8eb9ddf2df1.tar.xz
cuberite-439eb8d6cb111fdc336c95aec497a8eb9ddf2df1.tar.zst
cuberite-439eb8d6cb111fdc336c95aec497a8eb9ddf2df1.zip
Diffstat (limited to 'MCServer')
-rw-r--r--MCServer/Plugins/APIDump/APIDesc.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua
index a7a597fb7..63fccb2f6 100644
--- a/MCServer/Plugins/APIDump/APIDesc.lua
+++ b/MCServer/Plugins/APIDump/APIDesc.lua
@@ -2965,6 +2965,7 @@ end
RotateBlockFaceCW = { Params = "{{Globals#BlockFaces|eBlockFace}}", Return = "{{Globals#BlockFaces|eBlockFace}}", Notes = "Returns the {{Globals#BlockFaces|eBlockFace}} that corresponds to the given {{Globals#BlockFaces|eBlockFace}} after rotating it around the Y axis 90 degrees clockwise." },
StringSplit = {Params = "string, SeperatorsString", Return = "array table of strings", Notes = "Seperates string into multiple by splitting every time any of the characters in SeperatorsString is encountered."},
StringSplitAndTrim = {Params = "string, SeperatorsString", Return = "array table of strings", Notes = "Seperates string into multiple by splitting every time any of the characters in SeperatorsString is encountered. Each of the separate strings is trimmed (whitespace removed from the beginning and end of the string)"},
+ StringSplitWithQuotes = {Params = "string, SeperatorsString", Return = "array table of strings", Notes = "Seperates string into multiple by splitting every time any of the characters in SeperatorsString is encountered. Whitespace wrapped with single or double quotes will be ignored"},
StringToBiome = {Params = "string", Return = "{{Globals#BiomeTypes|BiomeType}}", Notes = "Converts a string representation to a {{Globals#BiomeTypes|BiomeType}} enumerated value"},
StringToDamageType = {Params = "string", Return = "{{Globals#DamageType|DamageType}}", Notes = "Converts a string representation to a {{Globals#DamageType|DamageType}} enumerated value."},
StringToDimension = {Params = "string", Return = "{{Globals#WorldDimension|Dimension}}", Notes = "Converts a string representation to a {{Globals#WorldDimension|Dimension}} enumerated value"},