summaryrefslogtreecommitdiffstats
path: root/src/Mobs/PassiveMonster.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-01-29 20:05:38 +0100
committerMattes D <github@xoft.cz>2014-01-29 20:05:38 +0100
commit07fb1bca23d4c80a9fa32a35fa5b39e517d10247 (patch)
tree37ce28c7745fb7b7dab768ce8a0780ea75138503 /src/Mobs/PassiveMonster.h
parentAdded instructions for ZIP source downloads. (diff)
parentDid what xoft said (diff)
downloadcuberite-07fb1bca23d4c80a9fa32a35fa5b39e517d10247.tar
cuberite-07fb1bca23d4c80a9fa32a35fa5b39e517d10247.tar.gz
cuberite-07fb1bca23d4c80a9fa32a35fa5b39e517d10247.tar.bz2
cuberite-07fb1bca23d4c80a9fa32a35fa5b39e517d10247.tar.lz
cuberite-07fb1bca23d4c80a9fa32a35fa5b39e517d10247.tar.xz
cuberite-07fb1bca23d4c80a9fa32a35fa5b39e517d10247.tar.zst
cuberite-07fb1bca23d4c80a9fa32a35fa5b39e517d10247.zip
Diffstat (limited to 'src/Mobs/PassiveMonster.h')
-rw-r--r--src/Mobs/PassiveMonster.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Mobs/PassiveMonster.h b/src/Mobs/PassiveMonster.h
index 14a6be6b1..0b3c155da 100644
--- a/src/Mobs/PassiveMonster.h
+++ b/src/Mobs/PassiveMonster.h
@@ -19,6 +19,9 @@ public:
/// When hit by someone, run away
virtual void DoTakeDamage(TakeDamageInfo & a_TDI) override;
+ /** Returns the item that the animal of this class follows when a player holds it in hand
+ Return an empty item not to follow (default). */
+ virtual const cItem GetFollowedItem(void) const { return cItem(); }
} ;