diff options
Diffstat (limited to 'src/beingmanager.cpp')
-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 0619bfc2..11fc1c6d 100644 --- a/src/beingmanager.cpp +++ b/src/beingmanager.cpp @@ -75,7 +75,7 @@ Being* BeingManager::createBeing(Uint32 id, Uint16 job) if (job < 10) being = new Player(id, job, mMap); - else if (job >= 100 & job < 200) + else if (job >= 100 && job < 200) being = new NPC(id, job, mMap, mNetwork); else if (job >= 1000 && job < 1200) being = new Monster(id, job, mMap); |