summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockRedstoneWire.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Blocks/BlockRedstoneWire.h')
-rw-r--r--src/Blocks/BlockRedstoneWire.h15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/Blocks/BlockRedstoneWire.h b/src/Blocks/BlockRedstoneWire.h
index de8e59a40..6f26f8c89 100644
--- a/src/Blocks/BlockRedstoneWire.h
+++ b/src/Blocks/BlockRedstoneWire.h
@@ -9,17 +9,14 @@
-class cBlockRedstoneWireHandler final :
- public cBlockHandler
+class cBlockRedstoneWireHandler final : public cBlockHandler
{
using Super = cBlockHandler;
-public:
-
+ public:
using Super::Super;
-private:
-
+ private:
virtual bool CanBeAt(const cChunk & a_Chunk, const Vector3i a_Position, const NIBBLETYPE a_Meta) const override
{
if (a_Position.y <= 0)
@@ -69,8 +66,4 @@ private:
UNUSED(a_Meta);
return 0;
}
-} ;
-
-
-
-
+};