diff -rNu athena-dev-2.1.1-mod0641/Readme0628 athena-dev-2.1.1-mod0642/Readme0628 --- athena-dev-2.1.1-mod0641/Readme0628 Wed Dec 24 23:08:24 2003 +++ athena-dev-2.1.1-mod0642/Readme0628 Thu Dec 25 17:38:06 2003 @@ -1,4 +1,12 @@ -------------- +//0642 by 死神 + +・装備バグ修正。(それだけ) + (map/) + pc.c + pc_authok()、pc_checkitem() 修正。 + +-------------- //0641 by 死神 ・bAspdRateとbSpeedRateのバグ修正。(それだけ)0640で計算をちょっと変えて見ましたがそれがまずかったみたいです。今度も計算式を変えましたがもう大丈夫だと思います。(多分) diff -rNu athena-dev-2.1.1-mod0641/map/pc.c athena-dev-2.1.1-mod0642/map/pc.c --- athena-dev-2.1.1-mod0641/map/pc.c Wed Dec 24 23:00:42 2003 +++ athena-dev-2.1.1-mod0642/map/pc.c Thu Dec 25 12:58:32 2003 @@ -560,7 +560,6 @@ map_addnickdb(sd); // ステータス初期計算など - pc_setequipindex(sd); pc_calcstatus(sd,1); return 0; @@ -3857,6 +3856,8 @@ if(sd->status.inventory[i].equip & ~pc_equippoint(sd,i)) sd->status.inventory[i].equip=0; } + + pc_setequipindex(sd); return 0; }