diff options
author | peterbell10 <peterbell10@live.co.uk> | 2018-02-20 11:43:28 +0100 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2018-02-20 11:43:28 +0100 |
commit | cf75d7b2c5e57c614ccbcb0a6ad3a87bd20090d8 (patch) | |
tree | aa867fcd86223e75fee7647866adc9fcf9d686fd /Server/Plugins/APIDump | |
parent | Damage fishing rod when catching the hook on a block, then reeling it in (#4151) (diff) | |
download | cuberite-cf75d7b2c5e57c614ccbcb0a6ad3a87bd20090d8.tar cuberite-cf75d7b2c5e57c614ccbcb0a6ad3a87bd20090d8.tar.gz cuberite-cf75d7b2c5e57c614ccbcb0a6ad3a87bd20090d8.tar.bz2 cuberite-cf75d7b2c5e57c614ccbcb0a6ad3a87bd20090d8.tar.lz cuberite-cf75d7b2c5e57c614ccbcb0a6ad3a87bd20090d8.tar.xz cuberite-cf75d7b2c5e57c614ccbcb0a6ad3a87bd20090d8.tar.zst cuberite-cf75d7b2c5e57c614ccbcb0a6ad3a87bd20090d8.zip |
Diffstat (limited to 'Server/Plugins/APIDump')
-rw-r--r-- | Server/Plugins/APIDump/APIDesc.lua | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Server/Plugins/APIDump/APIDesc.lua b/Server/Plugins/APIDump/APIDesc.lua index e3a23b266..eed6bd40f 100644 --- a/Server/Plugins/APIDump/APIDesc.lua +++ b/Server/Plugins/APIDump/APIDesc.lua @@ -74,7 +74,7 @@ return cBlockInfo = { Desc = [[ - This class is used to query and register block properties. + This class is used to query block properties. ]], Functions = { @@ -130,7 +130,7 @@ return Type = "cBlockInfo", }, }, - Notes = "Returns the {{cBlockInfo}} structure for the specified block type.", + Notes = "Returns the {{cBlockInfo}} structure for the specified block type. <b>OBSOLETE</b>, use static functions instead", }, GetHardness = { @@ -372,57 +372,57 @@ return m_BlockHeight = { Type = "number", - Notes = "The height of the block, a value between 0.0 and 1.0", + Notes = "The height of the block, a value between 0.0 and 1.0. <b>OBSOLETE</b>, use cBlockInfo:GetBlockHeight() instead.", }, m_CanBeTerraformed = { Type = "bool", - Notes = "Is this block suited to be terraformed?", + Notes = "Is this block suited to be terraformed? <b>OBSOLETE</b>, use cBlockInfo:CanBeTerraformed() instead.", }, m_FullyOccupiesVoxel = { Type = "bool", - Notes = "Does this block fully occupy its voxel - is it a 'full' block?", + Notes = "Does this block fully occupy its voxel - is it a 'full' block? <b>OBSOLETE</b>, use cBlockInfo:FullyOccupiesVoxel() instead.", }, m_Hardness = { Type = "number", - Notes = "The greater the value the longer the player needs to break the block.", + Notes = "The greater the value the longer the player needs to break the block. <b>OBSOLETE</b>, use cBlockInfo:GetHardness() instead.", }, m_IsSnowable = { Type = "bool", - Notes = "Can this block hold snow atop?", + Notes = "Can this block hold snow atop? <b>OBSOLETE</b>, use cBlockInfo:IsSnowable() instead", }, m_IsSolid = { Type = "bool", - Notes = "Is this block solid (player cannot walk through)?", + Notes = "Is this block solid (player cannot walk through)? <b>OBSOLETE</b>, use cBlockInfo:IsSolid() instead.", }, m_LightValue = { Type = "number", - Notes = "How much light do the blocks emit on their own?", + Notes = "How much light do the blocks emit on their own? <b>OBSOLETE</b>, use cBlockInfo:GetLightValue() instead.", }, m_OneHitDig = { Type = "bool", - Notes = "Is a block destroyed after a single hit?", + Notes = "Is a block destroyed after a single hit? <b>OBSOLETE</b>, use cBlockInfo:IsOneHitDig() instead.", }, m_PistonBreakable = { Type = "bool", - Notes = "Can a piston break this block?", + Notes = "Can a piston break this block? <b>OBSOLETE</b>, use cBlockInfo:IsPistonBreakable instead.", }, m_SpreadLightFalloff = { Type = "number", - Notes = "How much light do the blocks consume?", + Notes = "How much light do the blocks consume? <b>OBSOLETE</b>, use cBlockInfo:GetSpreadLightFalloff() instead.", }, m_Transparent = { Type = "bool", - Notes = "Is a block completely transparent? (light doesn't get decreased(?))", + Notes = "Is a block completely transparent? (light doesn't get decreased(?)). <b>OBSOLETE</b>, use cBlockInfo:IsTransparent() instead.", }, }, }, |