summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-03-08 10:29:57 +0100
committerHowaner <franzi.moos@googlemail.com>2014-03-08 10:29:57 +0100
commitbaeff21a5b693a99057aa5a7dc218bf93630b35a (patch)
treeb6a19f7feaad7f970486c68eb4582d803d39b5e4
parentAdd TNT Save/Load and add Netbeans projects to .gitignore (diff)
downloadcuberite-baeff21a5b693a99057aa5a7dc218bf93630b35a.tar
cuberite-baeff21a5b693a99057aa5a7dc218bf93630b35a.tar.gz
cuberite-baeff21a5b693a99057aa5a7dc218bf93630b35a.tar.bz2
cuberite-baeff21a5b693a99057aa5a7dc218bf93630b35a.tar.lz
cuberite-baeff21a5b693a99057aa5a7dc218bf93630b35a.tar.xz
cuberite-baeff21a5b693a99057aa5a7dc218bf93630b35a.tar.zst
cuberite-baeff21a5b693a99057aa5a7dc218bf93630b35a.zip
-rw-r--r--MCServer/Plugins/APIDump/APIDesc.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua
index 39f7cbcd7..5cea49cb1 100644
--- a/MCServer/Plugins/APIDump/APIDesc.lua
+++ b/MCServer/Plugins/APIDump/APIDesc.lua
@@ -2023,8 +2023,9 @@ end
Desc = "This class manages a TNT entity.",
Functions =
{
- GetCounterTime = { Return = "number", Notes = "Returns the time until the entity explodes." },
- GetMaxFuseTime = { Return = "number", Notes = "Returns how long the fuse was." },
+ Explode = { Return = "", Notes = "Explode the tnt." },
+ GetFuseTicks = { Return = "number", Notes = "Returns the fuse ticks (in seconds) until the tnt will explode." },
+ SetFuseTicks = { Return = "number", Notes = "Set the fuse ticks (in seconds) until the tnt will explode." },
},
Inherits = "cEntity",
},