diff options
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockFlowerPot.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Blocks/BlockFlowerPot.h b/src/Blocks/BlockFlowerPot.h index b552e2c81..6d64eb5f8 100644 --- a/src/Blocks/BlockFlowerPot.h +++ b/src/Blocks/BlockFlowerPot.h @@ -10,12 +10,12 @@ class cBlockFlowerPotHandler : public cBlockEntityHandler { - using super = cBlockEntityHandler; + using Super = cBlockEntityHandler; public: cBlockFlowerPotHandler(BLOCKTYPE a_BlockType): - super(a_BlockType) + Super(a_BlockType) { } |