diff options
author | Mat <mail@mathias.is> | 2020-03-22 16:50:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-22 16:50:34 +0100 |
commit | 9ddf433ae747e0a677d02062deea08a95c29f27b (patch) | |
tree | 1e27fcb0fa734b81cc8d538788b519f1eca872cd /src/Mobs/AggressiveMonster.cpp | |
parent | Increase speed of splash potion and expbottle (#4513) (diff) | |
download | cuberite-9ddf433ae747e0a677d02062deea08a95c29f27b.tar cuberite-9ddf433ae747e0a677d02062deea08a95c29f27b.tar.gz cuberite-9ddf433ae747e0a677d02062deea08a95c29f27b.tar.bz2 cuberite-9ddf433ae747e0a677d02062deea08a95c29f27b.tar.lz cuberite-9ddf433ae747e0a677d02062deea08a95c29f27b.tar.xz cuberite-9ddf433ae747e0a677d02062deea08a95c29f27b.tar.zst cuberite-9ddf433ae747e0a677d02062deea08a95c29f27b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/AggressiveMonster.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Mobs/AggressiveMonster.cpp b/src/Mobs/AggressiveMonster.cpp index da2b02a6d..79300bc4a 100644 --- a/src/Mobs/AggressiveMonster.cpp +++ b/src/Mobs/AggressiveMonster.cpp @@ -11,8 +11,8 @@ -cAggressiveMonster::cAggressiveMonster(const AString & a_ConfigName, eMonsterType a_MobType, const AString & a_SoundHurt, const AString & a_SoundDeath, double a_Width, double a_Height) : - super(a_ConfigName, a_MobType, a_SoundHurt, a_SoundDeath, a_Width, a_Height) +cAggressiveMonster::cAggressiveMonster(const AString & a_ConfigName, eMonsterType a_MobType, const AString & a_SoundHurt, const AString & a_SoundDeath, const AString & a_SoundAmbient, double a_Width, double a_Height) : + super(a_ConfigName, a_MobType, a_SoundHurt, a_SoundDeath, a_SoundAmbient, a_Width, a_Height) { m_EMPersonality = AGGRESSIVE; } |