This commit is contained in:
aozhiwei 2023-10-11 13:51:57 +08:00
parent 8c7006d072
commit 7aff0ef65f
2 changed files with 4 additions and 1 deletions

View File

@ -55,10 +55,12 @@ namespace mt
s_.bullet_through_wall_check = GetIntParam("bullet_through_wall_check", 1);
s_.revive_count = GetIntParam("revive_count", 1);
s_.pvp_revive_time = GetIntParam("pvp_revive_time", 10);
s_.moba_kill_times = GetIntParam("moba_kill_times", 12);
s_.moba_revive_time = GetIntParam("moba_revive_time", 2);
s_.moba_room_time = GetIntParam("moba_room_time", 60 * 3);
#ifdef DEBUG
s_.moba_room_time = 30;
s_.moba_room_time = 60;
s_.moba_kill_times = GetIntParam("moba_kill_times", 1);
#endif
#if 1
{

View File

@ -141,6 +141,7 @@ namespace mt
float newbie_andrid_atk_rate = 1;
float newbie_andrid_def_rate = 1;
int moba_kill_times = 12;
int moba_revive_time = 2;
int moba_room_time = 60 * 3;