diff --git a/JA2.suo b/JA2.suo index 9e5e69b88..780cad29e 100644 Binary files a/JA2.suo and b/JA2.suo differ diff --git a/Laptop/BobbyRGuns.cpp b/Laptop/BobbyRGuns.cpp index 77aec5d58..5a43ecb99 100644 --- a/Laptop/BobbyRGuns.cpp +++ b/Laptop/BobbyRGuns.cpp @@ -2912,14 +2912,21 @@ BOOLEAN IsAmmoMatchinWeaponType(UINT16 usItemIndex, UINT8 ubWeaponType) // Weapon has the correct filter ammo weapon type if (Weapon[i].ubWeaponType == ubWeaponType) { - bRetValue = TRUE; + //Weapon has correct magazine size + //if(Weapon[i].ubMagSize == Magazine[Item[usItemIndex].ubClassIndex].ubMagSize ) + { + bRetValue = TRUE; + break; + } } // Weapon has another filter ammo weapon type + /* else { bRetValue = FALSE; } break; + */ } } }