summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockSlab.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-05-07 22:18:23 +0200
committerMattes D <github@xoft.cz>2014-05-07 22:18:23 +0200
commitd9cdd4441e8a2877f2a5dcc724c781abfefafb77 (patch)
tree2609b4f09c2e224a32b21251539feeac381790fa /src/Blocks/BlockSlab.h
parentMerge pull request #990 from Howaner/Entities (diff)
parentSuperfluous method override. (diff)
downloadcuberite-d9cdd4441e8a2877f2a5dcc724c781abfefafb77.tar
cuberite-d9cdd4441e8a2877f2a5dcc724c781abfefafb77.tar.gz
cuberite-d9cdd4441e8a2877f2a5dcc724c781abfefafb77.tar.bz2
cuberite-d9cdd4441e8a2877f2a5dcc724c781abfefafb77.tar.lz
cuberite-d9cdd4441e8a2877f2a5dcc724c781abfefafb77.tar.xz
cuberite-d9cdd4441e8a2877f2a5dcc724c781abfefafb77.tar.zst
cuberite-d9cdd4441e8a2877f2a5dcc724c781abfefafb77.zip
Diffstat (limited to 'src/Blocks/BlockSlab.h')
-rw-r--r--src/Blocks/BlockSlab.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Blocks/BlockSlab.h b/src/Blocks/BlockSlab.h
index 76f5ed0e7..b6bd12588 100644
--- a/src/Blocks/BlockSlab.h
+++ b/src/Blocks/BlockSlab.h
@@ -97,6 +97,12 @@ public:
return "";
}
+
+ virtual bool CanDirtGrowGrass(NIBBLETYPE a_Meta) override
+ {
+ return (a_Meta & 0x8);
+ }
+
/// Returns true if the specified blocktype is one of the slabs handled by this handler
static bool IsAnySlabType(BLOCKTYPE a_BlockType)