1
This commit is contained in:
parent
6349a9b5b8
commit
8c5fa57ef4
@ -100,6 +100,7 @@ class Creature : public MoveableEntity
|
||||
int max_armor_shield = 0;
|
||||
int level = 1;
|
||||
int hero_level = 1;
|
||||
int revive_count = 0;
|
||||
|
||||
Weapon second_weapon;
|
||||
glm::vec3 skill_pos;
|
||||
|
@ -49,6 +49,7 @@ namespace mt
|
||||
s_.rank_mode_min_player = GetIntParam("rank_mode_min_player", 3);
|
||||
s_.downed_switch = GetIntParam("downed_switch", 0);
|
||||
s_.bullet_through_wall_check = GetIntParam("bullet_through_wall_check", 1);
|
||||
s_.revive_count = GetIntParam("revive_count", 1);
|
||||
#if 1
|
||||
{
|
||||
std::string point = GetStringParam("newbie_room_born_point", "3471.3662:6.8399:5268.6240");
|
||||
|
@ -120,6 +120,7 @@ namespace mt
|
||||
|
||||
int downed_switch = 0;
|
||||
int bullet_through_wall_check = 1;
|
||||
int revive_count = 1;
|
||||
};
|
||||
static void StaticPostInit();
|
||||
static const S& s() { return s_; };
|
||||
|
Loading…
x
Reference in New Issue
Block a user