summaryrefslogtreecommitdiffstats
path: root/src/Mobs/EnderDragon.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/EnderDragon.h')
-rw-r--r--src/Mobs/EnderDragon.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Mobs/EnderDragon.h b/src/Mobs/EnderDragon.h
index 1d4cd657c..b75bdb5a5 100644
--- a/src/Mobs/EnderDragon.h
+++ b/src/Mobs/EnderDragon.h
@@ -1,23 +1,23 @@
#pragma once
-#include "AggressiveMonster.h"
+#include "Monster.h"
class cEnderDragon :
- public cAggressiveMonster
+ public cMonster
{
- typedef cAggressiveMonster super;
+ typedef cMonster super;
public:
cEnderDragon(void);
CLASS_PROTODEF(cEnderDragon)
- virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
+ virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) /*override*/;
} ;