summaryrefslogtreecommitdiffstats
path: root/source/Blocks/BlockTorch.h
diff options
context:
space:
mode:
authorluksor111@gmail.com <luksor111@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-23 20:13:37 +0200
committerluksor111@gmail.com <luksor111@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-23 20:13:37 +0200
commit1e452425469e4a0cbf61fce698eb3ad89fb80a77 (patch)
treef38c53dd0f72971c1c829034250e38284831eb1e /source/Blocks/BlockTorch.h
parentYou can now see particles and hear sounds when other players are destroying blocks. (diff)
downloadcuberite-1e452425469e4a0cbf61fce698eb3ad89fb80a77.tar
cuberite-1e452425469e4a0cbf61fce698eb3ad89fb80a77.tar.gz
cuberite-1e452425469e4a0cbf61fce698eb3ad89fb80a77.tar.bz2
cuberite-1e452425469e4a0cbf61fce698eb3ad89fb80a77.tar.lz
cuberite-1e452425469e4a0cbf61fce698eb3ad89fb80a77.tar.xz
cuberite-1e452425469e4a0cbf61fce698eb3ad89fb80a77.tar.zst
cuberite-1e452425469e4a0cbf61fce698eb3ad89fb80a77.zip
Diffstat (limited to '')
-rw-r--r--source/Blocks/BlockTorch.h55
1 files changed, 1 insertions, 54 deletions
diff --git a/source/Blocks/BlockTorch.h b/source/Blocks/BlockTorch.h
index 2eb09f3ec..e34bbdd18 100644
--- a/source/Blocks/BlockTorch.h
+++ b/source/Blocks/BlockTorch.h
@@ -46,59 +46,6 @@ public:
{
switch (a_BlockType)
{
- case E_BLOCK_STONE:
- case E_BLOCK_GRASS:
- case E_BLOCK_DIRT:
- case E_BLOCK_COBBLESTONE:
- case E_BLOCK_PLANKS:
- case E_BLOCK_BEDROCK:
- case E_BLOCK_SAND:
- case E_BLOCK_GRAVEL:
- case E_BLOCK_GOLD_ORE:
- case E_BLOCK_IRON_ORE:
- case E_BLOCK_COAL_ORE:
- case E_BLOCK_LOG:
- case E_BLOCK_SPONGE:
- case E_BLOCK_LAPIS_ORE:
- case E_BLOCK_LAPIS_BLOCK:
- case E_BLOCK_SANDSTONE:
- case E_BLOCK_WOOL:
- case E_BLOCK_GOLD_BLOCK:
- case E_BLOCK_IRON_BLOCK:
- case E_BLOCK_DOUBLE_STONE_SLAB:
- case E_BLOCK_BRICK:
- case E_BLOCK_BOOKCASE:
- case E_BLOCK_MOSSY_COBBLESTONE:
- case E_BLOCK_OBSIDIAN:
- case E_BLOCK_MOB_SPAWNER:
- case E_BLOCK_DIAMOND_ORE:
- case E_BLOCK_DIAMOND_BLOCK:
- case E_BLOCK_CRAFTING_TABLE:
- case E_BLOCK_REDSTONE_ORE:
- case E_BLOCK_REDSTONE_ORE_GLOWING:
- case E_BLOCK_SNOW_BLOCK:
- case E_BLOCK_CLAY:
- case E_BLOCK_JUKEBOX:
- case E_BLOCK_PUMPKIN:
- case E_BLOCK_NETHERRACK:
- case E_BLOCK_SOULSAND:
- case E_BLOCK_JACK_O_LANTERN:
- case E_BLOCK_LOCKED_CHEST:
- case E_BLOCK_STONE_BRICKS:
- case E_BLOCK_MELON:
- case E_BLOCK_MYCELIUM:
- case E_BLOCK_NETHER_BRICK:
- case E_BLOCK_END_STONE:
- case E_BLOCK_REDSTONE_LAMP_OFF:
- case E_BLOCK_REDSTONE_LAMP_ON:
- case E_BLOCK_DOUBLE_WOODEN_SLAB:
- case E_BLOCK_EMERALD_ORE:
- case E_BLOCK_ENDER_CHEST:
- case E_BLOCK_EMERALD_BLOCK:
- {
- return true;
- }
-
case E_BLOCK_GLASS:
case E_BLOCK_FENCE:
case E_BLOCK_NETHER_BRICK_FENCE:
@@ -108,7 +55,7 @@ public:
default:
{
- return false;
+ return g_BlockIsSolid[a_BlockType];
}
}
}