diff options
author | Anubisss <none@none> | 2009-04-16 00:11:48 +0200 |
---|---|---|
committer | Anubisss <none@none> | 2009-04-16 00:11:48 +0200 |
commit | 96ffb827ae8ad6661247fec0835f012a3bdc5281 (patch) | |
tree | b24502cc5c4a770ce3c883a0e82ed6332a6174dd /src/game/Object.cpp | |
parent | 09b4ef5f76d0ef541d8e7c2669f67636ea5c2db9 (diff) |
*Better names for var Modelid.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Object.cpp')
-rw-r--r-- | src/game/Object.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/Object.cpp b/src/game/Object.cpp index 956b327820a..d106b578004 100644 --- a/src/game/Object.cpp +++ b/src/game/Object.cpp @@ -598,15 +598,15 @@ void Object::_BuildValuesUpdate(uint8 updatetype, ByteBuffer * data, UpdateMask { if(target->isGameMaster()) { - if(cinfo->Modelid2) - *data << cinfo->Modelid1; + if(cinfo->Modelid_A2) + *data << cinfo->Modelid_A1; else *data << 17519; // world invisible trigger's model } else { - if(cinfo->Modelid2) - *data << cinfo->Modelid2; + if(cinfo->Modelid_A2) + *data << cinfo->Modelid_A2; else *data << 11686; // world invisible trigger's model } |