This commit is contained in:
Mister_Nebula 2020-08-25 15:05:09 +01:00
parent cd417064e8
commit 0c6fd2f630
5 changed files with 2 additions and 8 deletions

View File

@ -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);

View File

@ -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"
} },

View File

@ -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)
{

View File

@ -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<QSBSector>(message.ObjectId);

View File

@ -3,6 +3,6 @@
"settings": {
"defaultServerIP": "localhost",
"port": 7777,
"debugMode": true
"debugMode": false
}
}