diff options
author | STRWarrior <niels.breuker@hotmail.nl> | 2013-11-10 15:51:32 +0100 |
---|---|---|
committer | STRWarrior <niels.breuker@hotmail.nl> | 2013-11-10 15:51:32 +0100 |
commit | 09805679120dc5aa5f236664245c475a4a34d197 (patch) | |
tree | 20b17c71801b655c9ee5765fcfccd07b04aded24 /source/Mobs/Wolf.cpp | |
parent | Wolves can now be owned by an entity. (diff) | |
download | cuberite-09805679120dc5aa5f236664245c475a4a34d197.tar cuberite-09805679120dc5aa5f236664245c475a4a34d197.tar.gz cuberite-09805679120dc5aa5f236664245c475a4a34d197.tar.bz2 cuberite-09805679120dc5aa5f236664245c475a4a34d197.tar.lz cuberite-09805679120dc5aa5f236664245c475a4a34d197.tar.xz cuberite-09805679120dc5aa5f236664245c475a4a34d197.tar.zst cuberite-09805679120dc5aa5f236664245c475a4a34d197.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Mobs/Wolf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Mobs/Wolf.cpp b/source/Mobs/Wolf.cpp index e9d3ce394..ad8360445 100644 --- a/source/Mobs/Wolf.cpp +++ b/source/Mobs/Wolf.cpp @@ -87,7 +87,7 @@ void cWolf::Tick(float a_Dt, cChunk & a_Chunk) { if (!IsAngry()) { - super::cMonster::Tick(a_Dt, a_Chunk); + cMonster::Tick(a_Dt, a_Chunk); } else { super::Tick(a_Dt, a_Chunk); } |