summaryrefslogtreecommitdiff
path: root/src/game-server/npc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-server/npc.cpp')
-rw-r--r--src/game-server/npc.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game-server/npc.cpp b/src/game-server/npc.cpp
index 7e144192..e45692b6 100644
--- a/src/game-server/npc.cpp
+++ b/src/game-server/npc.cpp
@@ -23,7 +23,10 @@
#include "scripting/script.hpp"
NPC::NPC(const std::string &name, int id, Script *s):
- Being(OBJECT_NPC, 65535), mScript(s), mID(id), mEnabled(true)
+ Being(OBJECT_NPC),
+ mScript(s),
+ mID(id),
+ mEnabled(true)
{
setName(name);
}