if I override
bool CanLoadBullet(Weapon_Base wpn, Magazine mag, bool reservationCheck = true)
in WeaponManager. It doesn't affect loading bullet after magazine is attached. It affects only manual action.
if I override
bool CanLoadBullet(Weapon_Base wpn, Magazine mag, bool reservationCheck = true)
in WeaponManager. It doesn't affect loading bullet after magazine is attached. It affects only manual action.
modded class WeaponManager { //Still loads bullet after magazine is attached and chamber is empty override bool CanLoadBullet(Weapon_Base wpn, Magazine mag, bool reservationCheck = true) { return false; } };