diff options
| author | KingPin <none@none> | 2008-11-10 09:04:23 -0600 |
|---|---|---|
| committer | KingPin <none@none> | 2008-11-10 09:04:23 -0600 |
| commit | 09a0d1122afb5b97f36dbedf0f58fc10d1ad135a (patch) | |
| tree | ea121fe9591077c9b5de6d58e51762a4dd84f6b3 /src/game/Pet.cpp | |
| parent | 09280b0091474b58d43daf42c0f3d99f86e6ec25 (diff) | |
[svn] * Improve some arena team related DB access
* Cache GM tickets on server startup.
* Remove unused src/game/HateMatrix.h and references.
* Better check client inventory pos data received in some client packets to
skip invalid cases
--HG--
branch : trunk
Diffstat (limited to 'src/game/Pet.cpp')
| -rw-r--r-- | src/game/Pet.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/Pet.cpp b/src/game/Pet.cpp index 4eaf047f96c..b66579895fb 100644 --- a/src/game/Pet.cpp +++ b/src/game/Pet.cpp @@ -935,7 +935,8 @@ bool Pet::CreateBaseAtCreature(Creature* creature) if(!IsPositionValid()) { - sLog.outError("ERROR: Pet (guidlow %d, entry %d) not created base at creature. Suggested coordinates isn't valid (X: %d Y: ^%d)", GetGUIDLow(), GetEntry(), GetPositionX(), GetPositionY()); + sLog.outError("ERROR: Pet (guidlow %d, entry %d) not created base at creature. Suggested coordinates isn't valid (X: %f Y: %f)", + GetGUIDLow(), GetEntry(), GetPositionX(), GetPositionY()); return false; } |
