summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-02 00:06:58 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-02 00:06:58 +0000
commitc638f42f8e80a980c21e210c6ce149731dd53b17 (patch)
tree6bf9674cded19cfc613502938493cfc6a2ad9ea1 /src/map/pc.c
parent1bf878b4c845d29f13a370b0aa3e18f434b57bb5 (diff)
downloadhercules-c638f42f8e80a980c21e210c6ce149731dd53b17.tar.gz
hercules-c638f42f8e80a980c21e210c6ce149731dd53b17.tar.bz2
hercules-c638f42f8e80a980c21e210c6ce149731dd53b17.tar.xz
hercules-c638f42f8e80a980c21e210c6ce149731dd53b17.zip
- Removed OPTION_XMAS, it seems to not exist....
- Added SC_SMA to handle "ready to use SMA" status (rather than SC_COMBO) since it has a visual effect to use. - Corrected the value of OPTION_FLYING - Using SG_FUSION ends Soul Linked effect. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6438 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 7d9cee17f..da385ffcb 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -5513,16 +5513,6 @@ int pc_setoption(struct map_session_data *sd,int type)
else if (!(type&OPTION_FALCON) && sd->sc.option&OPTION_FALCON) //Falcon OFF
clif_status_load(&sd->bl,SI_FALCON,0);
- //SG flying [Komurka]
- if (type&OPTION_FLYING && !(sd->sc.option&OPTION_FLYING)) //Flying ON
- {
- if (sd->status.class_==JOB_STAR_GLADIATOR)
- clif_changelook(&sd->bl,LOOK_BASE,JOB_STAR_GLADIATOR2);
- }
- else if (!(type&OPTION_FLYING) && sd->sc.option&OPTION_FLYING) //Flying OFF
- if (sd->vd.class_ != sd->status.class_)
- clif_changelook(&sd->bl,LOOK_BASE,sd->status.class_);
-
sd->sc.option=type;
clif_changeoption(&sd->bl);
status_calc_pc(sd,0);