diff options
Diffstat (limited to 'src/game/Object.cpp')
-rw-r--r-- | src/game/Object.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Object.cpp b/src/game/Object.cpp index 2d6a5786471..834c958e662 100644 --- a/src/game/Object.cpp +++ b/src/game/Object.cpp @@ -601,9 +601,9 @@ void Object::_BuildValuesUpdate(uint8 updatetype, ByteBuffer * data, UpdateMask if(cinfo->flags_extra & CREATURE_FLAG_EXTRA_TRIGGER) { if(target->isGameMaster()) - *data << cinfo->DisplayID_A; + *data << cinfo->Modelid1; else - *data << cinfo->DisplayID_H; + *data << cinfo->Modelid3; } else *data << m_uint32Values[ index ]; |