diff options
author | shennetsind <ind@henn.et> | 2013-06-14 08:53:17 -0300 |
---|---|---|
committer | Euphy <euphy@rathena.org> | 2013-06-15 15:56:20 -0400 |
commit | 7e58dbf3275eab3003eae3ff4cdaf5ee2ee9ce92 (patch) | |
tree | 40ac37901d0359e3500716bb10b29f2623c08da6 /src/map/battle.c | |
parent | 242198c67dd1371179f3b1c2c9cdc9e1d5404718 (diff) | |
download | hercules-7e58dbf3275eab3003eae3ff4cdaf5ee2ee9ce92.tar.gz hercules-7e58dbf3275eab3003eae3ff4cdaf5ee2ee9ce92.tar.bz2 hercules-7e58dbf3275eab3003eae3ff4cdaf5ee2ee9ce92.tar.xz hercules-7e58dbf3275eab3003eae3ff4cdaf5ee2ee9ce92.zip |
Hercules WPE Free
Official Packet Obfuscation Support
http://hercules.ws/board/topic/1105-hercules-wpe-free-june-14th-patch/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/battle.c')
-rw-r--r-- | src/map/battle.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map/battle.c b/src/map/battle.c index f78e4f9a8..31fe502f6 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -6375,7 +6375,7 @@ static const struct _battle_data { { "cashshop_show_points", &battle_config.cashshop_show_points, 0, 0, 1, }, { "mail_show_status", &battle_config.mail_show_status, 0, 0, 2, }, { "client_limit_unit_lv", &battle_config.client_limit_unit_lv, 0, 0, BL_ALL, }, -// BattleGround Settings + // BattleGround Settings { "bg_update_interval", &battle_config.bg_update_interval, 1000, 100, INT_MAX, }, { "bg_flee_penalty", &battle_config.bg_flee_penalty, 20, 0, INT_MAX, }, /** @@ -6400,6 +6400,7 @@ static const struct _battle_data { { "max_walk_path", &battle_config.max_walk_path, 17, 1, MAX_WALKPATH, }, { "item_enabled_npc", &battle_config.item_enabled_npc, 1, 0, 1, }, { "gm_ignore_warpable_area", &battle_config.gm_ignore_warpable_area, 0, 2, 100, }, + { "packet_obfuscation", &battle_config.packet_obfuscation, 1, 0, 3, }, }; #ifndef STATS_OPT_OUT /** @@ -6624,7 +6625,7 @@ void battle_adjust_conf(void) { #ifndef CELL_NOSTACK if (battle_config.cell_stack_limit != 1) - ShowWarning("Battle setting 'cell_stack_limit' takes no effect as this server was compiled without Cell Stack Limit support.\n"); + ShowWarning("Battle setting 'cell_stack_limit' takes no effect as this server was compiled without Cell Stack Limit support (CELL_NOSTACK).\n"); #endif } |