summaryrefslogtreecommitdiffstats
path: root/src/ClientHandle.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-09-27 22:01:55 +0200
committerMattes D <github@xoft.cz>2014-09-27 22:01:55 +0200
commita3b140cb44ed93e6df8328c0372afec24c6872f5 (patch)
tree2606040b6afe989a94beabbe1318d0487132afad /src/ClientHandle.cpp
parentBioGen: TwoLevel is now fully settable in INI. (diff)
parentCombined conditions (diff)
downloadcuberite-a3b140cb44ed93e6df8328c0372afec24c6872f5.tar
cuberite-a3b140cb44ed93e6df8328c0372afec24c6872f5.tar.gz
cuberite-a3b140cb44ed93e6df8328c0372afec24c6872f5.tar.bz2
cuberite-a3b140cb44ed93e6df8328c0372afec24c6872f5.tar.lz
cuberite-a3b140cb44ed93e6df8328c0372afec24c6872f5.tar.xz
cuberite-a3b140cb44ed93e6df8328c0372afec24c6872f5.tar.zst
cuberite-a3b140cb44ed93e6df8328c0372afec24c6872f5.zip
Diffstat (limited to 'src/ClientHandle.cpp')
-rw-r--r--src/ClientHandle.cpp14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp
index 878d309c9..3bd48eb3d 100644
--- a/src/ClientHandle.cpp
+++ b/src/ClientHandle.cpp
@@ -1148,10 +1148,18 @@ void cClientHandle::HandleBlockDigFinished(int a_BlockX, int a_BlockY, int a_Blo
FinishDigAnimation();
- if (!m_Player->IsGameModeCreative() && (a_OldBlock == E_BLOCK_BEDROCK))
+ if (!m_Player->IsGameModeCreative())
{
- Kick("You can't break a bedrock!");
- return;
+ if (a_OldBlock == E_BLOCK_BEDROCK)
+ {
+ Kick("You can't break a bedrock!");
+ return;
+ }
+ if (a_OldBlock == E_BLOCK_BARRIER)
+ {
+ Kick("You can't break a barrier!");
+ return;
+ }
}
cWorld * World = m_Player->GetWorld();