diff options
-rw-r--r-- | src/game/Pet.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game/Pet.cpp b/src/game/Pet.cpp index 0b7deb3f5f5..3d7f56e5d9f 100644 --- a/src/game/Pet.cpp +++ b/src/game/Pet.cpp @@ -227,7 +227,9 @@ bool Pet::LoadPetFromDB( Player* owner, uint32 petentry, uint32 petnumber, bool setPowerType(POWER_FOCUS); break; default: - sLog.outError("Pet have incorrect type (%u) for pet loading.", getPetType()); + if(!IsPetGhoul()) + sLog.outError("Pet have incorrect type (%u) for pet loading.", getPetType()); + break; } SetUInt32Value(UNIT_FIELD_PET_NAME_TIMESTAMP, time(NULL)); |