diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2017-08-13 13:37:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-13 13:37:37 +0200 |
commit | fdd4b6e7c49f2ea3f06c3e095e7b4e931d88a3ec (patch) | |
tree | 31f40014e94a63bf4835db62deac3f1cdaa87cef /src/BlockInfo.h | |
parent | Shortened DoIntervalsIntersect to two comparisons, made inline. (#3883) (diff) | |
parent | cBlockInfo: Deprecate place sound (diff) | |
download | cuberite-fdd4b6e7c49f2ea3f06c3e095e7b4e931d88a3ec.tar cuberite-fdd4b6e7c49f2ea3f06c3e095e7b4e931d88a3ec.tar.gz cuberite-fdd4b6e7c49f2ea3f06c3e095e7b4e931d88a3ec.tar.bz2 cuberite-fdd4b6e7c49f2ea3f06c3e095e7b4e931d88a3ec.tar.lz cuberite-fdd4b6e7c49f2ea3f06c3e095e7b4e931d88a3ec.tar.xz cuberite-fdd4b6e7c49f2ea3f06c3e095e7b4e931d88a3ec.tar.zst cuberite-fdd4b6e7c49f2ea3f06c3e095e7b4e931d88a3ec.zip |
Diffstat (limited to 'src/BlockInfo.h')
-rw-r--r-- | src/BlockInfo.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/BlockInfo.h b/src/BlockInfo.h index 569b537c1..1ba818cb3 100644 --- a/src/BlockInfo.h +++ b/src/BlockInfo.h @@ -55,9 +55,6 @@ public: /** Block height */ float m_BlockHeight; - /** Sound when placing this block */ - AString m_PlaceSound; - /** Block's hardness. The greater the value the longer the player needs to break the block. */ float m_Hardness; @@ -85,7 +82,6 @@ public: inline static bool FullyOccupiesVoxel (BLOCKTYPE a_Type) { return Get(a_Type).m_FullyOccupiesVoxel; } inline static bool CanBeTerraformed (BLOCKTYPE a_Type) { return Get(a_Type).m_CanBeTerraformed; } inline static float GetBlockHeight (BLOCKTYPE a_Type) { return Get(a_Type).m_BlockHeight; } - inline static AString GetPlaceSound (BLOCKTYPE a_Type) { return Get(a_Type).m_PlaceSound; } inline static float GetHardness (BLOCKTYPE a_Type) { return Get(a_Type).m_Hardness; } // tolua_end @@ -105,7 +101,6 @@ public: , m_FullyOccupiesVoxel(false) , m_CanBeTerraformed(false) , m_BlockHeight(1.0) - , m_PlaceSound() , m_Hardness(0.0f) , m_Handler() {} |