mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-20 15:41:01 +00:00
fixes
This commit is contained in:
parent
0323743f0e
commit
fbc919c662
@ -3,7 +3,7 @@ CRC: 3416116897
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: ce774a36e9290f42cbd030efc8637a37
|
||||
Hash: f304be71f6b3202b0c75695ffc81dd4e
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 47ee499ae8022a6b96ca6a5fd541f154
|
||||
|
@ -19,6 +19,10 @@
|
||||
PlayerReady,
|
||||
ProbeActiveChange,
|
||||
Elevator,
|
||||
Geyser
|
||||
Geyser,
|
||||
OrbSlot,
|
||||
OrbUser,
|
||||
OrbStatus,
|
||||
QSBPositionMessage
|
||||
}
|
||||
}
|
||||
|
@ -7,6 +7,7 @@ using QSB.OrbSync;
|
||||
using QSB.TimeSync;
|
||||
using QSB.TransformSync;
|
||||
using QSB.Utility;
|
||||
using QSB.WorldSync;
|
||||
using System;
|
||||
using System.Linq;
|
||||
using UnityEngine;
|
||||
@ -79,7 +80,7 @@ namespace QSB
|
||||
}
|
||||
else
|
||||
{
|
||||
WorldRegistry.OrbUserList.Add(orb, NetworkInstanceId.Invalid);
|
||||
WorldRegistry.OrbUserList.Add(orb, uint.MaxValue);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using QSB.TransformSync;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace QSB.WorldSync
|
||||
@ -8,7 +9,7 @@ namespace QSB.WorldSync
|
||||
private static readonly List<WorldObject> _worldObjects = new List<WorldObject>();
|
||||
public static List<NomaiOrbTransformSync> OrbList = new List<NomaiOrbTransformSync>();
|
||||
public static List<NomaiInterfaceOrb> OldOrbList = new List<NomaiInterfaceOrb>();
|
||||
public static Dictionary<NomaiInterfaceOrb, NetworkInstanceId> OrbUserList = new Dictionary<NomaiInterfaceOrb, NetworkInstanceId>();
|
||||
public static Dictionary<NomaiInterfaceOrb, uint> OrbUserList = new Dictionary<NomaiInterfaceOrb, uint>();
|
||||
|
||||
public static void AddObject(WorldObject worldObject)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user