diff options
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Silverfish.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Mobs/Silverfish.h b/src/Mobs/Silverfish.h index c6a4cb49a..435061f72 100644 --- a/src/Mobs/Silverfish.h +++ b/src/Mobs/Silverfish.h @@ -7,14 +7,15 @@ -class cSilverfish : +class cSilverfish: public cAggressiveMonster { - typedef cAggressiveMonster super; + using Super = cAggressiveMonster; public: - cSilverfish(void) : - super("Silverfish", mtSilverfish, "entity.silverfish.hurt", "entity.silverfish.death", "entity.silverfish.ambient", 0.3, 0.4) + + cSilverfish(): + Super("Silverfish", mtSilverfish, "entity.silverfish.hurt", "entity.silverfish.death", "entity.silverfish.ambient", 0.3, 0.4) { } |