diff options
Diffstat (limited to 'Server')
-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 = { |