diff options
author | madmaxoft <github@xoft.cz> | 2014-09-27 21:37:36 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-09-27 21:37:36 +0200 |
commit | e7de548c89e8ece5b0d66f597a9690d8ada5b2ad (patch) | |
tree | 976f66e93accee511046788394f882b9b26ba767 | |
parent | Wrapped clang-specific pragma into an #ifdef block. (diff) | |
download | cuberite-e7de548c89e8ece5b0d66f597a9690d8ada5b2ad.tar cuberite-e7de548c89e8ece5b0d66f597a9690d8ada5b2ad.tar.gz cuberite-e7de548c89e8ece5b0d66f597a9690d8ada5b2ad.tar.bz2 cuberite-e7de548c89e8ece5b0d66f597a9690d8ada5b2ad.tar.lz cuberite-e7de548c89e8ece5b0d66f597a9690d8ada5b2ad.tar.xz cuberite-e7de548c89e8ece5b0d66f597a9690d8ada5b2ad.tar.zst cuberite-e7de548c89e8ece5b0d66f597a9690d8ada5b2ad.zip |
Diffstat (limited to '')
-rw-r--r-- | src/BlockInfo.cpp | 2 | ||||
-rw-r--r-- | src/Blocks/ChunkInterface.cpp | 2 | ||||
-rw-r--r-- | src/Mobs/Monster.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/BlockInfo.cpp b/src/BlockInfo.cpp index fb9b746b3..14e814084 100644 --- a/src/BlockInfo.cpp +++ b/src/BlockInfo.cpp @@ -734,7 +734,7 @@ void cBlockInfo::Initialize(cBlockInfoArray & a_Info) a_Info[E_BLOCK_NEW_LOG ].m_PlaceSound = "dig.wood"; a_Info[E_BLOCK_ACACIA_WOOD_STAIRS ].m_PlaceSound = "dig.wood"; a_Info[E_BLOCK_DARK_OAK_WOOD_STAIRS ].m_PlaceSound = "dig.wood"; - a_Info[E_BLOCK_SLIME_BLOCK ].m_PlaceSound = "dig.slime"; // I hope it is named slime, it's definetly a new sound type though... + a_Info[E_BLOCK_SLIME_BLOCK ].m_PlaceSound = "dig.slime"; // TODO: Check that this is the correct name a_Info[E_BLOCK_BARRIER ].m_PlaceSound = "dig.stone"; a_Info[E_BLOCK_IRON_TRAPDOOR ].m_PlaceSound = "dig.metal"; a_Info[E_BLOCK_PRISMARINE_BLOCK ].m_PlaceSound = "dig.stone"; diff --git a/src/Blocks/ChunkInterface.cpp b/src/Blocks/ChunkInterface.cpp index e22a1410e..817640e98 100644 --- a/src/Blocks/ChunkInterface.cpp +++ b/src/Blocks/ChunkInterface.cpp @@ -4,7 +4,7 @@ #include "ChunkInterface.h" #include "ChunkMap.h" #include "BlockHandler.h" -#include "WorldInterface.h" +#include "WorldInterface.h" diff --git a/src/Mobs/Monster.h b/src/Mobs/Monster.h index ba746ebc8..a1f9c4a5b 100644 --- a/src/Mobs/Monster.h +++ b/src/Mobs/Monster.h @@ -25,7 +25,7 @@ class cMonster : typedef cPawn super; public: - //Depreciated + // Deprecated typedef eMonsterType eType; enum eFamily |