diff options
author | Gargaj <gargaj@conspiracy.hu> | 2015-11-14 16:42:26 +0100 |
---|---|---|
committer | Gargaj <gargaj@conspiracy.hu> | 2015-11-23 22:20:31 +0100 |
commit | 853e6e6882969f24547d782d42a3c19df4395064 (patch) | |
tree | 5ebe9e808e82c22a427429881526fb0ce390deb4 /src/Mobs/PassiveMonster.h | |
parent | Fixed display of helpmessage (diff) | |
download | cuberite-853e6e6882969f24547d782d42a3c19df4395064.tar cuberite-853e6e6882969f24547d782d42a3c19df4395064.tar.gz cuberite-853e6e6882969f24547d782d42a3c19df4395064.tar.bz2 cuberite-853e6e6882969f24547d782d42a3c19df4395064.tar.lz cuberite-853e6e6882969f24547d782d42a3c19df4395064.tar.xz cuberite-853e6e6882969f24547d782d42a3c19df4395064.tar.zst cuberite-853e6e6882969f24547d782d42a3c19df4395064.zip |
Diffstat (limited to 'src/Mobs/PassiveMonster.h')
-rw-r--r-- | src/Mobs/PassiveMonster.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Mobs/PassiveMonster.h b/src/Mobs/PassiveMonster.h index 7f20c3092..a7e574a1d 100644 --- a/src/Mobs/PassiveMonster.h +++ b/src/Mobs/PassiveMonster.h @@ -20,9 +20,8 @@ public: /** When hit by someone, run away */ virtual bool 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(); } + /** Returns the items that the animal of this class follows when a player holds it in hand. */ + virtual void GetFollowedItems(cItems & a_Items) { } } ; |