summaryrefslogtreecommitdiff
path: root/src/map/status.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-12 02:55:39 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-12 02:55:39 +0000
commit1181f3ea7d249ef2e1d6571e803940a95d03ffa0 (patch)
tree497f175d88f4e28bbfdab33704240863cbb84fd2 /src/map/status.c
parent0fff381fcb3cf402f579b4dd62d15f3e6323f014 (diff)
downloadhercules-1181f3ea7d249ef2e1d6571e803940a95d03ffa0.tar.gz
hercules-1181f3ea7d249ef2e1d6571e803940a95d03ffa0.tar.bz2
hercules-1181f3ea7d249ef2e1d6571e803940a95d03ffa0.tar.xz
hercules-1181f3ea7d249ef2e1d6571e803940a95d03ffa0.zip
- Added special_state changebase to identify when a character has a special-view associated with some equipment to correctly revert the look when you take off said equipment (fixes tuxedo/wedding dress when you use modify_wedding_display: yes)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6002 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r--src/map/status.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/map/status.c b/src/map/status.c
index 7555a25aa..9b7ed47f0 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -627,9 +627,11 @@ int status_calc_pc(struct map_session_data* sd,int first)
b_matk2 = sd->matk2;
b_mdef = sd->mdef;
b_mdef2 = sd->mdef2;
- b_class = sd->vd.class_;
b_base_atk = sd->base_atk;
-
+ b_class = sd->vd.class_;
+ if (sd->special_state.changebase) //Clear suit. (if equipment is still on, vd.class_ will revert back to b_class's value)
+ sd->vd.class_ = sd->status.class_;
+
pc_calc_skilltree(sd); // スキルツリ?の計算
sd->max_weight = max_weight_base[sd->status.class_]+sd->status.str*300;