summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Silverfish.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/Mobs/Silverfish.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Mobs/Silverfish.h b/src/Mobs/Silverfish.h
index 9988ca015..20b75474d 100644
--- a/src/Mobs/Silverfish.h
+++ b/src/Mobs/Silverfish.h
@@ -1,24 +1,24 @@
#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)
- {
- }
+ cSilverfish(void) :
+ super("Silverfish", mtSilverfish, "entity.silverfish.hurt", "entity.silverfish.death", 0.3, 0.7)
+ {
+ }
- CLASS_PROTODEF(cSilverfish)
+ CLASS_PROTODEF(cSilverfish)
} ;