This commit is contained in:
aozhiwei 2019-07-03 16:57:56 +08:00
parent 2e9e1c28e0
commit cbb78fed41

View File

@ -71,12 +71,12 @@ Player* PlayerMgr::CreatePlayerByCMJoin(long ip_saddr, int socket, const cs::CMJ
hum->weapons[GUN_SLOT0].weapon_idx = GUN_SLOT0;
hum->weapons[GUN_SLOT0].weapon_id = msg.weapon().weapon_id();
hum->weapons[GUN_SLOT0].weapon_lv = msg.weapon().weapon_lv();
hum->weapons[GUN_SLOT0].meta = weapon_meta;
#if 1
hum->weapons[GUN_SLOT0].ammo = 0;
hum->weapons[GUN_SLOT0].ammo = hum->weapons[GUN_SLOT0].GetClipVolume();
#else
hum->weapons[GUN_SLOT0].ammo = FIGHTING_MODE_BULLET_NUM;
#endif
hum->weapons[GUN_SLOT0].meta = weapon_meta;
hum->weapons[GUN_SLOT0].Recalc();
hum->curr_weapon = &hum->weapons[GUN_SLOT0];
}