diff options
author | Ira Rice <irarice@gmail.com> | 2009-02-26 10:55:08 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-02-26 10:55:08 -0700 |
commit | 6b0cff837b7adae56dc90d12e9c0e256e6aab134 (patch) | |
tree | 0f27f0a65bf7e221f9814de660c09d3d5750afbb | |
parent | 5dd5ed1987bdafa8d32edf10317a3f80dd8b2708 (diff) | |
download | mana-6b0cff837b7adae56dc90d12e9c0e256e6aab134.tar.gz mana-6b0cff837b7adae56dc90d12e9c0e256e6aab134.tar.bz2 mana-6b0cff837b7adae56dc90d12e9c0e256e6aab134.tar.xz mana-6b0cff837b7adae56dc90d12e9c0e256e6aab134.zip |
Forgot to extend the player or NPC specifying fields as well.
Signed-off-by: Ira Rice <irarice@gmail.com>
-rw-r--r-- | src/beingmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/beingmanager.cpp b/src/beingmanager.cpp index a2d39150..d6d71a91 100644 --- a/src/beingmanager.cpp +++ b/src/beingmanager.cpp @@ -79,7 +79,7 @@ Being* BeingManager::createBeing(Uint32 id, Uint16 job) being = new Being(id, job, mMap); // Player or NPC - if (job < 200) + if (job <= 1000 || (job >= 4001 && job <= 4049)) { MessageOut outMsg(mNetwork); outMsg.writeInt16(0x0094); |