diff options
author | Haru <haru@dotalux.com> | 2018-08-26 20:53:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-26 20:53:05 +0200 |
commit | a7bee2cdb8b4d4a2a250d611be4babd27043b6db (patch) | |
tree | 0135aa01a07e4ca72ae035c3179da7c82a92b777 /src/map/mob.c | |
parent | a1e841ccf13c63fefad02a1bfce0e50b92c649a0 (diff) | |
parent | 4118b1135eb79c211aafb6408a4ad8cf9ce09b02 (diff) | |
download | hercules-a7bee2cdb8b4d4a2a250d611be4babd27043b6db.tar.gz hercules-a7bee2cdb8b4d4a2a250d611be4babd27043b6db.tar.bz2 hercules-a7bee2cdb8b4d4a2a250d611be4babd27043b6db.tar.xz hercules-a7bee2cdb8b4d4a2a250d611be4babd27043b6db.zip |
Merge pull request #2164 from mekolat/addvariable
always set the type to C_NAME when adding variables through script->add_str
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 27039490c..220ccc182 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2702,11 +2702,11 @@ static int mob_dead(struct mob_data *md, struct block_list *src, int type) if (++sd->mission_count >= 100 && (temp = mob->get_random_id(0, 0xE, sd->status.base_level)) != 0) { pc->addfame(sd, RANKTYPE_TAEKWON, 1); sd->mission_mobid = temp; - pc_setglobalreg(sd,script->add_str("TK_MISSION_ID"), temp); + pc_setglobalreg(sd,script->add_variable("TK_MISSION_ID"), temp); sd->mission_count = 0; clif->mission_info(sd, temp, 0); } - pc_setglobalreg(sd,script->add_str("TK_MISSION_COUNT"), sd->mission_count); + pc_setglobalreg(sd,script->add_variable("TK_MISSION_COUNT"), sd->mission_count); } if( sd->status.party_id ) |