Skip to content

Commit

Permalink
Remove debug spam
Browse files Browse the repository at this point in the history
  • Loading branch information
sarbian committed Mar 22, 2017
1 parent e32cffb commit f479a72
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions MFIManager.cs
Expand Up @@ -40,14 +40,9 @@ private void AddModularPrecalc(Vessel vessel)
{
if (!vessel.gameObject.GetComponent<ModularVesselPrecalculate>())
{
print("[MFIManager] Adding ModularVesselPrecalculate");
//print("[MFIManager] Adding ModularVesselPrecalculate");
vessel.gameObject.AddComponent<ModularVesselPrecalculate>();
}
print("[MFIManager] listing vessel " + vessel.vesselName + " Components");
foreach (Component component in vessel.gameObject.GetComponents<Component>())
{
print("[MFIManager] " + component.GetType().Name);
}
}
}
}

0 comments on commit f479a72

Please sign in to comment.