diff --git a/QSB/Animation/AnimationSync.cs b/QSB/Animation/AnimationSync.cs index bbadbaed..491d9d99 100644 --- a/QSB/Animation/AnimationSync.cs +++ b/QSB/Animation/AnimationSync.cs @@ -1,6 +1,5 @@ using OWML.ModHelper.Events; using QSB.Events; -using QSB.Utility; using System; using System.Linq; using UnityEngine; @@ -152,7 +151,6 @@ namespace QSB.Animation private void SuitUp() { - DebugLog.DebugWrite($"Suit on for {PlayerId}"); _bodyAnim.runtimeAnimatorController = _suitedAnimController; _anim.runtimeAnimatorController = _suitedAnimController; _unsuitedGraphics.SetActive(false); @@ -161,7 +159,6 @@ namespace QSB.Animation private void SuitDown() { - DebugLog.DebugWrite($"Suit off for {PlayerId}"); _bodyAnim.runtimeAnimatorController = _unsuitedAnimController; _anim.runtimeAnimatorController = _unsuitedAnimController; _unsuitedGraphics.SetActive(true); diff --git a/QSB/DeathSync/Necronomicon.cs b/QSB/DeathSync/Necronomicon.cs index 4c9461b3..60114c8a 100644 --- a/QSB/DeathSync/Necronomicon.cs +++ b/QSB/DeathSync/Necronomicon.cs @@ -15,7 +15,7 @@ namespace QSB.DeathSync } }, { DeathType.Impact, new[] { - "{0} forgot what retrorockets are", + "{0} forgot what retro-rockets are", "{0} bonked into the ground too hard", "{0} went splat" } }, diff --git a/QSB/PlayerInfo.cs b/QSB/PlayerInfo.cs index 4744395e..0f4d2938 100644 --- a/QSB/PlayerInfo.cs +++ b/QSB/PlayerInfo.cs @@ -21,7 +21,6 @@ namespace QSB public string Name { get; set; } public bool IsReady { get; set; } public State State { get; set; } - //public int[] SectorCacheList = new int[PlayerRegistry.NetworkObjectCount]; public PlayerInfo(uint id) { diff --git a/QSB/TransformSync/PlayerSectorEvent.cs b/QSB/TransformSync/PlayerSectorEvent.cs index b64acd76..7dc59cdf 100644 --- a/QSB/TransformSync/PlayerSectorEvent.cs +++ b/QSB/TransformSync/PlayerSectorEvent.cs @@ -32,8 +32,6 @@ namespace QSB.TransformSync { if (!QSBSceneManager.IsInUniverse) { - //var player = PlayerRegistry.GetPlayer(message.FromId); - //player.SectorCacheList[message.AboutId - message.FromId + 1] = message.ObjectId; return; } var sector = WorldRegistry.GetObject(message.ObjectId); diff --git a/QSB/default-config.json b/QSB/default-config.json index 1d394b36..74eaa332 100644 --- a/QSB/default-config.json +++ b/QSB/default-config.json @@ -3,6 +3,6 @@ "settings": { "defaultServerIP": "localhost", "port": 7777, - "debugMode": true + "debugMode": false } }