diff options
author | madmaxoft <github@xoft.cz> | 2014-03-20 16:05:22 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-03-20 16:05:22 +0100 |
commit | 9fae50f44796c4230845c5dd29e82395827d45ff (patch) | |
tree | c6721e92fa31a0acb81cd51cb8b3947ab4a4fc6a | |
parent | Rewritten player speeds to be relative unit-less. (diff) | |
download | cuberite-9fae50f44796c4230845c5dd29e82395827d45ff.tar cuberite-9fae50f44796c4230845c5dd29e82395827d45ff.tar.gz cuberite-9fae50f44796c4230845c5dd29e82395827d45ff.tar.bz2 cuberite-9fae50f44796c4230845c5dd29e82395827d45ff.tar.lz cuberite-9fae50f44796c4230845c5dd29e82395827d45ff.tar.xz cuberite-9fae50f44796c4230845c5dd29e82395827d45ff.tar.zst cuberite-9fae50f44796c4230845c5dd29e82395827d45ff.zip |
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/APIDump/APIDesc.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua index 39bbb0c77..19609295d 100644 --- a/MCServer/Plugins/APIDump/APIDesc.lua +++ b/MCServer/Plugins/APIDump/APIDesc.lua @@ -2792,11 +2792,11 @@ end "Globals.xpcall", "Globals.decoda_output", -- When running under Decoda, this function gets added to the global namespace "sqlite3.__newindex", - "%a+\.__%a+", -- AnyClass.__Anything - "%a+\.\.collector", -- AnyClass..collector - "%a+\.new", -- AnyClass.new - "%a+.new_local", -- AnyClass.new_local - "%a+.delete", -- AnyClass.delete + "%a+%.__%a+", -- AnyClass.__Anything + "%a+%.%.collector", -- AnyClass..collector + "%a+%.new", -- AnyClass.new + "%a+%.new_local", -- AnyClass.new_local + "%a+%.delete", -- AnyClass.delete -- Functions global in the APIDump plugin: "CreateAPITables", |