PickUp Weapon Weight Bug

Report bugs of MFPS 2.0 here
Post Reply
User avatar
transformes
Contributor
Contributor
Posts: 27
Joined: Mon Jul 24, 2017 2:31 am

Bug : weight is not equalized when you pick up weapons from the ground

Fix : open bl_GunManager

add to the last line of the method

Code: Select all

public void PickUpGun(bl_OnPickUpInfo e)
{
.....
bl_EventHandler.ChangeWeaponEvent(PlayerEquip[m_Current].GunID);
}
User avatar
jony12
Contributor
Contributor
Posts: 223
Joined: Mon Sep 24, 2018 12:46 pm

transformes wrote:Bug : weight is not equalized when you pick up weapons from the ground

Fix : open bl_GunManager

add to the last line of the method

Code: Select all

public void PickUpGun(bl_OnPickUpInfo e)
{
.....
bl_EventHandler.ChangeWeaponEvent(PlayerEquip[m_Current].GunID);
}
Thank you so much.
Post Reply