diff options
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockLadder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Blocks/BlockLadder.h b/src/Blocks/BlockLadder.h index 90e2d8304..c141faeb4 100644 --- a/src/Blocks/BlockLadder.h +++ b/src/Blocks/BlockLadder.h @@ -11,12 +11,12 @@ class cBlockLadderHandler : public cClearMetaOnDrop<cMetaRotator<cBlockHandler, 0x07, 0x02, 0x05, 0x03, 0x04> > { - using super = cClearMetaOnDrop<cMetaRotator<cBlockHandler, 0x07, 0x02, 0x05, 0x03, 0x04>>; + using Super = cClearMetaOnDrop<cMetaRotator<cBlockHandler, 0x07, 0x02, 0x05, 0x03, 0x04>>; public: cBlockLadderHandler(BLOCKTYPE a_BlockType): - super(a_BlockType) + Super(a_BlockType) { } |