diff options
Diffstat (limited to '')
-rw-r--r-- | src/Entities/SplashPotionEntity.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Entities/SplashPotionEntity.h b/src/Entities/SplashPotionEntity.h index b90d0a317..8427f34b3 100644 --- a/src/Entities/SplashPotionEntity.h +++ b/src/Entities/SplashPotionEntity.h @@ -26,7 +26,7 @@ class cSplashPotionEntity : { // tolua_end - using super = cProjectileEntity; + using Super = cProjectileEntity; public: // tolua_export @@ -76,7 +76,7 @@ protected: } else { - super::Tick(a_Dt, a_Chunk); + Super::Tick(a_Dt, a_Chunk); } } |