diff options
author | LogicParrot <LogicParrot@users.noreply.github.com> | 2017-09-02 19:50:09 +0200 |
---|---|---|
committer | LogicParrot <LogicParrot@users.noreply.github.com> | 2017-09-02 19:50:09 +0200 |
commit | 76d914647cb1cf60558bb0e62f149802a4aae2e0 (patch) | |
tree | a6c0afa0ba902274db0f7983ff9501908fb10cb3 /src/Mobs/Ocelot.h | |
parent | Implemented Blaze triple shots (diff) | |
download | cuberite-76d914647cb1cf60558bb0e62f149802a4aae2e0.tar cuberite-76d914647cb1cf60558bb0e62f149802a4aae2e0.tar.gz cuberite-76d914647cb1cf60558bb0e62f149802a4aae2e0.tar.bz2 cuberite-76d914647cb1cf60558bb0e62f149802a4aae2e0.tar.lz cuberite-76d914647cb1cf60558bb0e62f149802a4aae2e0.tar.xz cuberite-76d914647cb1cf60558bb0e62f149802a4aae2e0.tar.zst cuberite-76d914647cb1cf60558bb0e62f149802a4aae2e0.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Ocelot.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Mobs/Ocelot.h b/src/Mobs/Ocelot.h index d27467683..1c1b383cb 100644 --- a/src/Mobs/Ocelot.h +++ b/src/Mobs/Ocelot.h @@ -3,7 +3,7 @@ #include "Monster.h" #include "../UUID.h" - +#include "Behaviors/BehaviorDoNothing.h" @@ -68,6 +68,9 @@ protected: int m_CheckPlayerTickCount; AString m_OwnerName; cUUID m_OwnerUUID; + +private: + cBehaviorDoNothing m_BehaviorDoNothing; } ; |