diff options
author | Samuel Barney <samjbarney@gmail.com> | 2014-08-21 16:26:42 +0200 |
---|---|---|
committer | Samuel Barney <samjbarney@gmail.com> | 2014-08-21 16:26:42 +0200 |
commit | 778b933e0078b740093ab9d83eddef702011791a (patch) | |
tree | ac1b610b0704f5c6bbd84c83d68a73d8cb01d2b7 /src/Mobs/Wolf.cpp | |
parent | Removed references to the new mob code in preparation to renaming it. (diff) | |
download | cuberite-778b933e0078b740093ab9d83eddef702011791a.tar cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.gz cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.bz2 cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.lz cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.xz cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.zst cuberite-778b933e0078b740093ab9d83eddef702011791a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Wolf.cpp (renamed from src/Mobs/NewWolf.cpp) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Mobs/NewWolf.cpp b/src/Mobs/Wolf.cpp index 4e95bf6e8..c3ff4b2eb 100644 --- a/src/Mobs/NewWolf.cpp +++ b/src/Mobs/Wolf.cpp @@ -1,7 +1,7 @@ #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules -#include "NewWolf.h" +#include "Wolf.h" #include "../World.h" #include "../Entities/Player.h" #include "../Items/ItemHandler.h" @@ -10,7 +10,7 @@ -cNewWolf::cNewWolf(void) : +cWolf::cWolf(void) : super("Wolf", mtWolf, "mob.wolf.hurt", "mob.wolf.death", 0.6, 0.8), m_IsSitting(false), m_IsBegging(false), |