diff options
-rw-r--r-- | Changelog-Trunk.txt | 3 | ||||
-rw-r--r-- | src/map/log.h | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 01c12521c..7b34a8247 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -3,6 +3,9 @@ Date Added AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. +2007/01/26 + * Added some more freedom for the txt log paths since 32 wasn't enough + * Removed log_uptime that was accidentally introduced in r1208 [ultramage] 2007/01/24 * Cleaned up some more the Joint Beat implementation, so the status don't take effect until the attack connects. [Skotlex] diff --git a/src/map/log.h b/src/map/log.h index c9d88cc37..872506ac5 100644 --- a/src/map/log.h +++ b/src/map/log.h @@ -49,10 +49,8 @@ extern struct Log_Config { int sql_logs; int rare_items_log,refine_items_log,price_items_log,amount_items_log; //for filter int branch, drop, mvpdrop, zeny, gm, npc, chat; - char log_branch[32], log_pick[32], log_zeny[32], log_mvpdrop[32], log_gm[32], log_npc[32], log_chat[32]; + char log_branch[64], log_pick[64], log_zeny[64], log_mvpdrop[64], log_gm[64], log_npc[64], log_chat[64]; char log_branch_db[32], log_pick_db[32], log_zeny_db[32], log_mvpdrop_db[32], log_gm_db[32], log_npc_db[32], log_chat_db[32]; - int uptime; - char log_uptime[32]; } log_config; #endif |