diff options
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/ZombiePigman.cpp (renamed from src/Mobs/NewZombiePigman.cpp) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Mobs/NewZombiePigman.cpp b/src/Mobs/ZombiePigman.cpp index e0a491805..a8e5ffd39 100644 --- a/src/Mobs/NewZombiePigman.cpp +++ b/src/Mobs/ZombiePigman.cpp @@ -1,13 +1,13 @@ #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules -#include "NewZombiePigman.h" +#include "ZombiePigman.h" #include "../World.h" -cNewZombiePigman::cNewZombiePigman(void) : +cZombiePigman::cZombiePigman(void) : super("ZombiePigman", mtZombiePigman, "mob.zombiepig.zpighurt", "mob.zombiepig.zpigdeath", 0.6, 1.8) { } @@ -16,7 +16,7 @@ cNewZombiePigman::cNewZombiePigman(void) : -void cNewZombiePigman::GetDrops(cItems & a_Drops, cEntity * a_Killer) +void cZombiePigman::GetDrops(cItems & a_Drops, cEntity * a_Killer) { int LootingLevel = 0; if (a_Killer != NULL) |