diff options
author | Jedzkie <jedzkie13@rocketmail.com> | 2017-04-19 23:41:37 +0800 |
---|---|---|
committer | Jedzkie <jedzkie13@rocketmail.com> | 2017-04-19 23:41:37 +0800 |
commit | 94104f0e3c69e2089b42915de74c792acbda9e6d (patch) | |
tree | 5d39c8042527236f056243a518e1a09fe1bf9c37 /src/map/clif.c | |
parent | c22bc45868e8ea2b7ef904848d178caeaa6b379c (diff) | |
download | hercules-94104f0e3c69e2089b42915de74c792acbda9e6d.tar.gz hercules-94104f0e3c69e2089b42915de74c792acbda9e6d.tar.bz2 hercules-94104f0e3c69e2089b42915de74c792acbda9e6d.tar.xz hercules-94104f0e3c69e2089b42915de74c792acbda9e6d.zip |
Added oktoberfest_ignorepalette configuration
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 3bf77baef..fd1ec17bf 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -3213,7 +3213,7 @@ void clif_changelook(struct block_list *bl,int type,int val) vd->cloth_color = 0; if (sd->sc.option&OPTION_HANBOK && battle_config.hanbok_ignorepalette) vd->cloth_color = 0; - if (sd->sc.option&OPTION_OKTOBERFEST /* TODO: config? */) + if (sd->sc.option&OPTION_OKTOBERFEST && battle_config.oktoberfest_ignorepalette) vd->cloth_color = 0; if (sd->sc.option&OPTION_SUMMER2 && battle_config.summer2_ignorepalette) vd->cloth_color = 0; @@ -3248,7 +3248,7 @@ void clif_changelook(struct block_list *bl,int type,int val) val = 0; if( sd->sc.option&OPTION_HANBOK && battle_config.hanbok_ignorepalette ) val = 0; - if( sd->sc.option&OPTION_OKTOBERFEST /* TODO: config? */ ) + if( sd->sc.option&OPTION_OKTOBERFEST && battle_config.oktoberfest_ignorepalette) val = 0; if (sd->sc.option&OPTION_SUMMER2 && battle_config.summer2_ignorepalette) val = 0; |