summaryrefslogtreecommitdiffstats
path: root/MCServer
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-01-12 08:32:54 +0100
committerMattes D <github@xoft.cz>2014-01-12 08:32:54 +0100
commit1ec9eb564cda0bbee3699f0cd854d629ef706951 (patch)
tree165f1aa12bc3f123289bc056f7e9d7556dc9715f /MCServer
parentMerge pull request #527 from derouinw/biomessplit (diff)
parentFixed reading the files. (diff)
downloadcuberite-1ec9eb564cda0bbee3699f0cd854d629ef706951.tar
cuberite-1ec9eb564cda0bbee3699f0cd854d629ef706951.tar.gz
cuberite-1ec9eb564cda0bbee3699f0cd854d629ef706951.tar.bz2
cuberite-1ec9eb564cda0bbee3699f0cd854d629ef706951.tar.lz
cuberite-1ec9eb564cda0bbee3699f0cd854d629ef706951.tar.xz
cuberite-1ec9eb564cda0bbee3699f0cd854d629ef706951.tar.zst
cuberite-1ec9eb564cda0bbee3699f0cd854d629ef706951.zip
Diffstat (limited to 'MCServer')
-rw-r--r--MCServer/Plugins/APIDump/APIDesc.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua
index 26537918e..9b117b0fa 100644
--- a/MCServer/Plugins/APIDump/APIDesc.lua
+++ b/MCServer/Plugins/APIDump/APIDesc.lua
@@ -867,6 +867,10 @@ ValueName0=SomeOtherValue
{ Params = "KeyName, Comment", Return = "", Notes = "Adds a comment to be stored in the file under the specified key" },
},
AddKeyName = { Params = "KeyName", Returns = "number", Notes = "Adds a new key of the specified name. Returns the KeyID of the new key." },
+ AddValue = { Params = "KeyName, ValueName, Value", Return = "", Notes = "Adds a new value of the specified name to the specified key. If another value of the same name exists in the key, both are kept (nonstandard INI file)" },
+ AddValueB = { Params = "KeyName, ValueName, Value", Return = "", Notes = "Adds a new bool value of the specified name to the specified key. If another value of the same name exists in the key, both are kept (nonstandard INI file)" },
+ AddValueF = { Params = "KeyName, ValueName, Value", Return = "", Notes = "Adds a new float value of the specified name to the specified key. If another value of the same name exists in the key, both are kept (nonstandard INI file)" },
+ AddValueI = { Params = "KeyName, ValueName, Value", Return = "", Notes = "Adds a new integer value of the specified name to the specified key. If another value of the same name exists in the key, both are kept (nonstandard INI file)" },
CaseInsensitive = { Params = "", Return = "", Notes = "Sets key names' and value names' comparisons to case insensitive (default)." },
CaseSensitive = { Params = "", Return = "", Notes = "Sets key names and value names comparisons to case sensitive." },
Clear = { Params = "", Return = "", Notes = "Removes all the in-memory data. Note that , like all the other operations, this doesn't affect any file data." },