diff options
-rw-r--r-- | Changelog-SVN.txt | 1 | ||||
-rw-r--r-- | src/map/status.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-SVN.txt b/Changelog-SVN.txt index 339d75c68..53305f83b 100644 --- a/Changelog-SVN.txt +++ b/Changelog-SVN.txt @@ -18,6 +18,7 @@ Date Added * Print number of online users in online.txt/.html even if there's only 1 user online [celest] * Updated obj_del to delete all GNUMakeFile and .o files + compiled exes [DracoRPG] + * Fixed a typo in Stalk / Tunnel Drive speed calculation [DracoRPG] 03/23 * Adjusted my trade fix [1280: MouseJstr] diff --git a/src/map/status.c b/src/map/status.c index 742dd7d52..e7fcf22b3 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -921,7 +921,7 @@ int status_calc_pc(struct map_session_data* sd,int first) if( (skill=pc_checkskill(sd,BS_WEAPONRESEARCH))>0) // 武器?究の命中率?加 sd->hit += skill*2; if(sd->status.option&2 && (skill = pc_checkskill(sd,RG_TUNNELDRIVE))>0 ) // トンネルドライブ // トンネルドライブ - sd->speed += (100-16)*skill*DEFAULT_WALK_SPEED/100; + sd->speed = (100-16*skill)*DEFAULT_WALK_SPEED/100; //sd->speed += (1.2*DEFAULT_WALK_SPEED - skill*9); if (pc_iscarton(sd) && (skill=pc_checkskill(sd,MC_PUSHCART))>0) // カ?トによる速度低下 sd->speed += (10-skill) * (DEFAULT_WALK_SPEED * 0.1); |