diff --git a/Subsurface/Source/Items/Item.cs b/Subsurface/Source/Items/Item.cs index 7cfb24dae..a7a17ff7b 100644 --- a/Subsurface/Source/Items/Item.cs +++ b/Subsurface/Source/Items/Item.cs @@ -721,7 +721,7 @@ namespace Barotrauma /// private void ApplyWaterForces() { - if (!InWater || body == null || Container != null) return; + if (!InWater || Container != null || body == null || !body.Enabled) return; float forceFactor = 1.0f; if (CurrentHull != null) diff --git a/Subsurface/Source/Sounds/Sound.cs b/Subsurface/Source/Sounds/Sound.cs index 6ae2bb627..eaa1f299d 100644 --- a/Subsurface/Source/Sounds/Sound.cs +++ b/Subsurface/Source/Sounds/Sound.cs @@ -44,7 +44,8 @@ namespace Barotrauma { try { - oggSound = OggSound.Load(file); + DebugConsole.Log("Loading sound " + file); + oggSound = OggSound.Load(file); } catch (Exception e) {