diff --git a/Assets/Scripts/Weapons/WeaponManager.cs b/Assets/Scripts/Weapons/WeaponManager.cs index e628fa2..a0cdaea 100644 --- a/Assets/Scripts/Weapons/WeaponManager.cs +++ b/Assets/Scripts/Weapons/WeaponManager.cs @@ -36,7 +36,7 @@ public class WeaponManager : NetworkBehaviour currentWeaponIndex--; } counter++; - Debug.Log(activeWeapons[currentWeaponIndex]); + //Debug.Log(activeWeapons[currentWeaponIndex]); } while (activeWeapons[currentWeaponIndex] == null); } else if (Input.GetAxis("Mouse ScrollWheel") < 0f){ // Scroll down @@ -51,7 +51,7 @@ public class WeaponManager : NetworkBehaviour currentWeaponIndex++; } counter++; - Debug.Log(activeWeapons[currentWeaponIndex]); + //Debug.Log(activeWeapons[currentWeaponIndex]); } while (activeWeapons[currentWeaponIndex] == null); }