summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Silverfish.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/Silverfish.h')
-rw-r--r--src/Mobs/Silverfish.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Mobs/Silverfish.h b/src/Mobs/Silverfish.h
index 90ef5ea5d..c4dd9f912 100644
--- a/src/Mobs/Silverfish.h
+++ b/src/Mobs/Silverfish.h
@@ -1,21 +1,22 @@
#pragma once
-#include "AggressiveMonster.h"
+#include "Monster.h"
class cSilverfish :
- public cAggressiveMonster
+ public cMonster
{
- typedef cAggressiveMonster super;
+ typedef cMonster super;
public:
cSilverfish(void) :
- super("Silverfish", mtSilverfish, "entity.silverfish.hurt", "entity.silverfish.death", 0.3, 0.7)
+ super(mtSilverfish, "entity.silverfish.hurt", "entity.silverfish.death", 0.3, 0.7)
{
+ GetMonsterConfig("Silverfish");
}
CLASS_PROTODEF(cSilverfish)