This commit is contained in:
Mister_Nebula 2021-03-13 18:40:22 +00:00
parent 6c395f4bb7
commit 2effd85b39
3 changed files with 2 additions and 4 deletions

View File

@ -139,7 +139,7 @@ namespace QSB.ItemSync
private bool _anyoneStillOnPlatform;
private bool _wasLocalInBounds;
private CameraState _cameraState;
private Dictionary<PlayerInfo, GameObject> _playerToHologram = new Dictionary<PlayerInfo, GameObject>();
private readonly Dictionary<PlayerInfo, GameObject> _playerToHologram = new Dictionary<PlayerInfo, GameObject>();
private void Awake()
{

View File

@ -1,7 +1,5 @@
using QSB.Events;
using QSB.ItemSync;
using QSB.Messaging;
using QSB.Player;
using QSB.Utility;
namespace QSB.Player.Events

View File

@ -3,7 +3,7 @@ using QuantumUNET.Transport;
namespace QSB.Player.Events
{
class EnterLeaveMessage : WorldObjectMessage
internal class EnterLeaveMessage : WorldObjectMessage
{
public EnterLeaveType Type { get; set; }