diff --git a/server/gameserver/human.cc b/server/gameserver/human.cc index 35f91525..853391dc 100644 --- a/server/gameserver/human.cc +++ b/server/gameserver/human.cc @@ -106,6 +106,15 @@ Human::Human():Creature() skin.skin_lv = 1; } weapons[0] = default_weapon; + inventory_[IS_1XSCOPE] = 1; + + if (MetaMgr::Instance()->fighting_mode) { + inventory_[IS_9MM] = FIGHTING_MODE_BULLET_NUM; + inventory_[IS_556MM] = FIGHTING_MODE_BULLET_NUM; + inventory_[IS_762MM] = FIGHTING_MODE_BULLET_NUM; + inventory_[IS_12GAUGE] = FIGHTING_MODE_BULLET_NUM; + inventory_[IS_RPG] = FIGHTING_MODE_BULLET_NUM; + } } Human::~Human()