summaryrefslogtreecommitdiff
path: root/src/map/mob.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2015-12-15 00:43:54 +0100
committerHaru <haru@dotalux.com>2015-12-28 18:35:59 +0100
commitcf142dc21aafd6bf0a483c87f32c219375ae116a (patch)
tree8fad3087c9bb62133f21bb0d68ab4d6b3a11d03a /src/map/mob.c
parent11278d27b85a5930b548c73e20fd651558e0e1bf (diff)
downloadhercules-cf142dc21aafd6bf0a483c87f32c219375ae116a.tar.gz
hercules-cf142dc21aafd6bf0a483c87f32c219375ae116a.tar.bz2
hercules-cf142dc21aafd6bf0a483c87f32c219375ae116a.tar.xz
hercules-cf142dc21aafd6bf0a483c87f32c219375ae116a.zip
Added Poring to the mob_id enum
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/mob.c')
-rw-r--r--src/map/mob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c
index 48f1e531e..d3feb16b8 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -4388,7 +4388,7 @@ int mob_read_randommonster(void)
for (i = 0; i < ARRAYLENGTH(mobfile) && i < MAX_RANDOMMONSTER; i++) {
FILE *fp;
unsigned int count = 0;
- mob->db_data[0]->summonper[i] = 1002; // Default fallback value, in case the database does not provide one
+ mob->db_data[0]->summonper[i] = MOBID_PORING; // Default fallback value, in case the database does not provide one
sprintf(line, "%s/%s", map->db_path, mobfile[i]);
fp=fopen(line,"r");
if(fp==NULL){