summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Mooshroom.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/Mooshroom.h')
-rw-r--r--src/Mobs/Mooshroom.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/Mobs/Mooshroom.h b/src/Mobs/Mooshroom.h
index fb002c2bf..40ba41155 100644
--- a/src/Mobs/Mooshroom.h
+++ b/src/Mobs/Mooshroom.h
@@ -1,26 +1,23 @@
#pragma once
-#include "PassiveMonster.h"
+#include "Monster.h"
class cMooshroom :
- public cPassiveMonster
+ public cMonster
{
- typedef cPassiveMonster super;
+ typedef cMonster super;
public:
cMooshroom(void);
CLASS_PROTODEF(cMooshroom)
- virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
- virtual void OnRightClicked(cPlayer & a_Player) override;
-
- virtual const cItem GetFollowedItem(void) const override { return cItem(E_ITEM_WHEAT); }
+ virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) /*override*/;
} ;