diff options
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockEnderchest.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Blocks/BlockEnderchest.h b/src/Blocks/BlockEnderchest.h index f3df6da28..8e96bec95 100644 --- a/src/Blocks/BlockEnderchest.h +++ b/src/Blocks/BlockEnderchest.h @@ -10,12 +10,12 @@ class cBlockEnderchestHandler : public cYawRotator<cBlockEntityHandler> { - using super = cYawRotator<cBlockEntityHandler>; + using Super = cYawRotator<cBlockEntityHandler>; public: cBlockEnderchestHandler(BLOCKTYPE a_BlockType): - super(a_BlockType) + Super(a_BlockType) { } |