diff options
author | Alexander Harkness <me@bearbin.net> | 2018-01-14 19:44:45 +0100 |
---|---|---|
committer | peterbell10 <peterbell10@live.co.uk> | 2018-01-14 19:44:45 +0100 |
commit | ad22922393c7982b885840960222de64ff96ad36 (patch) | |
tree | a028b7459f3c865f7e8bd563ae476c578763a9b1 /Server/Plugins/APIDump/APIDesc.lua | |
parent | Travis: Remove gdb (#4140) (diff) | |
download | cuberite-ad22922393c7982b885840960222de64ff96ad36.tar cuberite-ad22922393c7982b885840960222de64ff96ad36.tar.gz cuberite-ad22922393c7982b885840960222de64ff96ad36.tar.bz2 cuberite-ad22922393c7982b885840960222de64ff96ad36.tar.lz cuberite-ad22922393c7982b885840960222de64ff96ad36.tar.xz cuberite-ad22922393c7982b885840960222de64ff96ad36.tar.zst cuberite-ad22922393c7982b885840960222de64ff96ad36.zip |
Diffstat (limited to '')
-rw-r--r-- | Server/Plugins/APIDump/APIDesc.lua | 44 |
1 files changed, 42 insertions, 2 deletions
diff --git a/Server/Plugins/APIDump/APIDesc.lua b/Server/Plugins/APIDump/APIDesc.lua index aeb217b7a..594e281e6 100644 --- a/Server/Plugins/APIDump/APIDesc.lua +++ b/Server/Plugins/APIDump/APIDesc.lua @@ -3724,6 +3724,46 @@ local Hash = cCryptoHash.sha1HexString("DataToHash") }, Notes = "Returns true if the entity is invisible", }, + IsInFire = + { + Returns = + { + { + Type = "boolean", + }, + }, + Notes = "Returns true if any part of the entity is in a fire block", + }, + IsInLava = + { + Returns = + { + { + Type = "boolean", + }, + }, + Notes = "Returns true if any part of the entity is in a lava block", + }, + IsInWater = + { + Returns = + { + { + Type = "boolean", + }, + }, + Notes = "Returns true if any part of the entity is in a water block", + }, + IsHeadInWater = + { + Returns = + { + { + Type = "boolean", + }, + }, + Notes = "Returns true if the entity's head is in a water block", + }, IsItemFrame = { Returns = @@ -3872,7 +3912,7 @@ local Hash = cCryptoHash.sha1HexString("DataToHash") Type = "boolean", }, }, - Notes = "Returns true if the mob or player is submerged in water (head is in a water block). Note, this function is only updated with mobs or players.", + Notes = "Returns true if the entity's head is in a water block <b>Currently deprecated in favour of IsHeadInWater()</b>", }, IsSwimming = { @@ -3882,7 +3922,7 @@ local Hash = cCryptoHash.sha1HexString("DataToHash") Type = "boolean", }, }, - Notes = "Returns true if the mob or player is swimming in water (feet are in a water block). Note, this function is only updated with mobs or players.", + Notes = "Returns true if any part of the entity is in a water block. Note, this function is only updated with mobs or players. <b>Currently deprecated in favour of IsInWater()</b>", }, IsTicking = { |