diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-10-16 21:18:11 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-10-16 21:18:11 +0000 |
commit | d3175115354bb2417f01877a96d0068e2f2c875d (patch) | |
tree | 3fe6dde2b7922eb12bc376687ae18a59971d908e /src/being.cpp | |
parent | 43a80fa64acb7f02cf5305b4a3d2ef6040b4b8c9 (diff) | |
download | mana-d3175115354bb2417f01877a96d0068e2f2c875d.tar.gz mana-d3175115354bb2417f01877a96d0068e2f2c875d.tar.bz2 mana-d3175115354bb2417f01877a96d0068e2f2c875d.tar.xz mana-d3175115354bb2417f01877a96d0068e2f2c875d.zip |
Rename {read,write}{Byte,Short,Long} to {read,write}Int{8,16,32}.
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being.cpp b/src/being.cpp index 42b2c2f5..6b26afad 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -95,8 +95,8 @@ Being* createBeing(Uint32 id, Uint16 job, Map *map) if (being->getType() == Being::PLAYER) { MessageOut outMsg; - outMsg.writeShort(0x0094); - outMsg.writeLong(being->getId());//readLong(2)); + outMsg.writeInt16(0x0094); + outMsg.writeInt32(being->getId());//readLong(2)); } // If the being is a monster then load the monsterset else if (being->job >= 1002 && |