This commit is contained in:
aozhiwei 2023-06-20 15:07:36 +08:00
parent 792348a8a7
commit 6dcb30972d
2 changed files with 4 additions and 3 deletions

View File

@ -39,13 +39,12 @@ namespace mt
s_.pickup_weapon_replace_type = GetIntParam("pickup_weapon_replace_type", 0);
s_.sand_table_move_speed = GetIntParam("sand_table_move_speed", 500);
s_.wait_cloud_time = GetIntParam("wait_cloud_time", 10);
s_.newbie_room_battle_times = GetIntParam("newbie_room_battle_times", 0);
s_.mid_room_max_rank = GetIntParam("mid_room_max_rank", 0);
#if 1
s_.match_lock_time++;
#endif
s_.pre_client_shot = GetIntParam("pre_client_shot", 0);
#ifdef DEBUG
s_.pre_client_shot = 1;
#endif
#if 1
{
std::string point = GetStringParam("newbie_room_born_point", "3471.3662:6.8399:5268.6240");

View File

@ -112,6 +112,8 @@ namespace mt
int pre_client_shot = 0;
int newbie_room_battle_times = 0;
int mid_room_max_rank = 0;
};
static void StaticPostInit();
static const S& s() { return s_; };