diff options
-rw-r--r-- | Changelog.txt | 2 | ||||
-rw-r--r-- | src/map/pc.c | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Changelog.txt b/Changelog.txt index 4f51bcfa4..822aaf02d 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,5 +1,7 @@ Date Added 12/22 + * Eliminated skill tree mapping since we have entries + for all the classes in the skill_tree.txt files [MouseJstr] * Added finding_ore_rate to battle_athena.conf, thanks to orn [celest] * Changed how party exp is passed out to eliminate players current in a chat window or those who havn't moved or attacked diff --git a/src/map/pc.c b/src/map/pc.c index ee883d736..3cd14fcef 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -1087,7 +1087,7 @@ int pc_calc_skilltree_normalize_job(int c, struct map_session_data *sd) { case 17: c = 6; break; -// #if 0 +#if 0 case 4008: case 4014: case 4015: @@ -1142,7 +1142,7 @@ int pc_calc_skilltree_normalize_job(int c, struct map_session_data *sd) { case 4043: c = 4029; break; -// #endif +#endif } } } |