summaryrefslogtreecommitdiffstats
path: root/source/BlockID.cpp
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2013-08-14 12:44:02 +0200
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2013-08-14 12:44:02 +0200
commit303b1a9c45cb74a656c9a099d669c89b92e74098 (patch)
tree06e472545ade2601edd300d8160dce1900b0084f /source/BlockID.cpp
parentYET ANOTHER ERROR >:( (diff)
downloadcuberite-303b1a9c45cb74a656c9a099d669c89b92e74098.tar
cuberite-303b1a9c45cb74a656c9a099d669c89b92e74098.tar.gz
cuberite-303b1a9c45cb74a656c9a099d669c89b92e74098.tar.bz2
cuberite-303b1a9c45cb74a656c9a099d669c89b92e74098.tar.lz
cuberite-303b1a9c45cb74a656c9a099d669c89b92e74098.tar.xz
cuberite-303b1a9c45cb74a656c9a099d669c89b92e74098.tar.zst
cuberite-303b1a9c45cb74a656c9a099d669c89b92e74098.zip
Diffstat (limited to '')
-rw-r--r--source/BlockID.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/BlockID.cpp b/source/BlockID.cpp
index ad96cfa72..35668d0b4 100644
--- a/source/BlockID.cpp
+++ b/source/BlockID.cpp
@@ -655,7 +655,6 @@ public:
g_BlockPistonBreakable[E_BLOCK_IRON_DOOR] = true;
g_BlockPistonBreakable[E_BLOCK_JACK_O_LANTERN] = true;
g_BlockPistonBreakable[E_BLOCK_LADDER] = true;
- g_BlockPistonBreakable[E_BLOCK_LAVA] = false;
g_BlockPistonBreakable[E_BLOCK_LEVER] = true;
g_BlockPistonBreakable[E_BLOCK_MELON] = true;
g_BlockPistonBreakable[E_BLOCK_MELON_STEM] = true;
@@ -668,14 +667,15 @@ public:
g_BlockPistonBreakable[E_BLOCK_RED_ROSE] = true;
g_BlockPistonBreakable[E_BLOCK_REEDS] = true;
g_BlockPistonBreakable[E_BLOCK_SNOW] = true;
- g_BlockPistonBreakable[E_BLOCK_STATIONARY_LAVA] = false;
- g_BlockPistonBreakable[E_BLOCK_STATIONARY_WATER] = false; //This gave pistons the ability to drop water :D
+ g_BlockPistonBreakable[E_BLOCK_STATIONARY_LAVA] = true;
+ g_BlockPistonBreakable[E_BLOCK_STATIONARY_WATER] = true;
+ g_BlockPistonBreakable[E_BLOCK_LAVA] = true;
+ g_BlockPistonBreakable[E_BLOCK_WATER] = true;
g_BlockPistonBreakable[E_BLOCK_STONE_BUTTON] = true;
g_BlockPistonBreakable[E_BLOCK_STONE_PRESSURE_PLATE] = true;
g_BlockPistonBreakable[E_BLOCK_TALL_GRASS] = true;
g_BlockPistonBreakable[E_BLOCK_TORCH] = true;
g_BlockPistonBreakable[E_BLOCK_VINES] = true;
- g_BlockPistonBreakable[E_BLOCK_WATER] = false;
g_BlockPistonBreakable[E_BLOCK_WOODEN_DOOR] = true;
g_BlockPistonBreakable[E_BLOCK_WOODEN_PRESSURE_PLATE] = true;
g_BlockPistonBreakable[E_BLOCK_YELLOW_FLOWER] = true;