summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/beingmanager.cpp2
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);