diff options
author | shennetsind <ind@henn.et> | 2013-10-10 18:19:16 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-10-10 18:19:31 -0300 |
commit | a2e01e40c9e60b8b2d75e4faf41d80a7041e8f93 (patch) | |
tree | f91fcb5ddb1097dc483bfb4d646ae9278ea70368 /src/map/pc.c | |
parent | d8f102fb65a6dc422a138862571a29d888182618 (diff) | |
download | hercules-a2e01e40c9e60b8b2d75e4faf41d80a7041e8f93.tar.gz hercules-a2e01e40c9e60b8b2d75e4faf41d80a7041e8f93.tar.bz2 hercules-a2e01e40c9e60b8b2d75e4faf41d80a7041e8f93.tar.xz hercules-a2e01e40c9e60b8b2d75e4faf41d80a7041e8f93.zip |
Homun-S Quest Updated
Partial Merge of 0b68607
Quest Changelog:
- 1.2 Replaced with official script. [Euphy]
Closes #177
Closes #178
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index ffc3427c7..157d9e28a 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -6438,7 +6438,7 @@ int pc_resetskill(struct map_session_data* sd, int flag) pc->setoption(sd, i); if( homun_alive(sd->hd) && pc->checkskill(sd, AM_CALLHOMUN) ) - homun->vaporize(sd, 0); + homun->vaporize(sd, HOM_ST_ACTIVE); } for( i = 1; i < MAX_SKILL; i++ ) { @@ -6663,7 +6663,7 @@ int pc_dead(struct map_session_data *sd,struct block_list *src) { if (sd->status.hom_id > 0){ if(battle_config.homunculus_auto_vapor && sd->hd && !sd->hd->sc.data[SC_LIGHT_OF_REGENE]) - homun->vaporize(sd, 0); + homun->vaporize(sd, HOM_ST_ACTIVE); } if( sd->md ) @@ -7588,7 +7588,7 @@ int pc_jobchange(struct map_session_data *sd,int job, int upper) pc->setoption(sd, i); if(homun_alive(sd->hd) && !pc->checkskill(sd, AM_CALLHOMUN)) - homun->vaporize(sd, 0); + homun->vaporize(sd, HOM_ST_ACTIVE); if(sd->status.manner < 0) clif->changestatus(sd,SP_MANNER,sd->status.manner); |