Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xtray85 committed Nov 26, 2023
1 parent 23ff127 commit af4c19b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RobustToolbox
Submodule RobustToolbox updated 80 files
+3 −0 .gitmodules
+1 −0 Arch/Arch
+94 −0 Arch/Arch.csproj
+1 −1 MSBuild/Robust.Engine.Version.props
+48 −0 RELEASE-NOTES.md
+204 −0 Resources/EngineCredits/Libraries.yml
+177 −0 Robust.Benchmarks/Arch/ArchComponentAccessBenchmark.cs
+1 −1 Robust.Benchmarks/EntityManager/AddRemoveComponentBenchmark.cs
+1 −1 Robust.Benchmarks/EntityManager/ComponentIndexBenchmark.cs
+1 −1 Robust.Benchmarks/EntityManager/GetComponentBenchmark.cs
+1 −0 Robust.Benchmarks/Robust.Benchmarks.csproj
+1 −1 Robust.Client/Console/Commands/Debug.cs
+7 −1 Robust.Client/Console/Commands/ProfileEntitySpawningCommand.cs
+1 −1 Robust.Client/GameObjects/ClientEntityManager.cs
+0 −8 Robust.Client/GameObjects/EntitySystems/MapSystem.cs
+1 −1 Robust.Client/GameStates/ClientDirtySystem.cs
+116 −51 Robust.Client/GameStates/ClientGameStateManager.cs
+1 −3 Robust.Client/GameStates/GameStateProcessor.cs
+27 −12 Robust.Client/Graphics/Clyde/Clyde.LightRendering.cs
+12 −7 Robust.Client/Map/TileEdgeOverlay.cs
+1 −1 Robust.Client/Placement/Modes/AlignSimilar.cs
+3 −3 Robust.Client/Robust.Client.csproj
+1 −1 Robust.Client/ViewVariables/Editors/VVPropEditorEntityCoordinates.cs
+1 −1 Robust.Client/ViewVariables/Editors/VVPropEditorEntityUid.cs
+7 −1 Robust.Server/Console/Commands/ProfileEntitySpawningCommand.cs
+36 −3 Robust.Server/GameObjects/EntitySystems/MapLoaderSystem.cs
+0 −5 Robust.Server/GameObjects/EntitySystems/MapSystem.cs
+6 −6 Robust.Server/GameObjects/ServerEntityManager.cs
+3 −3 Robust.Server/Placement/PlacementManager.cs
+1 −1 Robust.Server/Robust.Server.csproj
+4 −3 Robust.Server/Scripting/ScriptHost.cs
+3 −3 Robust.Shared.Scripting/Robust.Shared.Scripting.csproj
+4 −4 Robust.Shared.Scripting/ScriptGlobalsShared.cs
+17 −0 Robust.Shared/Console/Commands/ArchTrimCommand.cs
+47 −0 Robust.Shared/GameObjects/ArchetypeIterator.cs
+60 −0 Robust.Shared/GameObjects/ChunkIterator.cs
+5 −2 Robust.Shared/GameObjects/CompIdx.cs
+0 −13 Robust.Shared/GameObjects/ComponentEventArgs.cs
+2 −2 Robust.Shared/GameObjects/Components/Transform/TransformComponent.cs
+48 −0 Robust.Shared/GameObjects/EntityIterator.cs
+114 −0 Robust.Shared/GameObjects/EntityManager.Arch.cs
+447 −748 Robust.Shared/GameObjects/EntityManager.Components.cs
+11 −0 Robust.Shared/GameObjects/EntityManager.Spawn.cs
+171 −68 Robust.Shared/GameObjects/EntityManager.cs
+3 −17 Robust.Shared/GameObjects/EntitySystem.Proxy.cs
+3 −1 Robust.Shared/GameObjects/EntitySystemMessages/EntityTerminatingEvent.cs
+60 −12 Robust.Shared/GameObjects/EntityUid.cs
+7 −13 Robust.Shared/GameObjects/IEntityManager.Components.cs
+6 −5 Robust.Shared/GameObjects/IEntityManager.Spawn.cs
+1 −8 Robust.Shared/GameObjects/Systems/EntityLookupSystem.cs
+163 −51 Robust.Shared/GameObjects/Systems/SharedMapSystem.Grid.cs
+0 −3 Robust.Shared/GameObjects/Systems/SharedMapSystem.Map.cs
+1 −1 Robust.Shared/Localization/LocalizationManager.Entity.cs
+2 −2 Robust.Shared/Localization/LocalizationManager.Functions.cs
+6 −0 Robust.Shared/Map/EntityCoordinates.cs
+5 −0 Robust.Shared/Map/MapManager.GridCollection.cs
+2 −0 Robust.Shared/Map/MapManager.MapCollection.cs
+1 −1 Robust.Shared/Map/MapSerializationContext.cs
+23 −22 Robust.Shared/Physics/BroadphaseComponent.cs
+2 −2 Robust.Shared/Physics/Systems/SharedPhysicsSystem.Components.cs
+11 −13 Robust.Shared/Physics/Systems/SharedPhysicsSystem.cs
+12 −48 Robust.Shared/Prototypes/EntityPrototype.cs
+1 −0 Robust.Shared/Random/IRobustRandom.cs
+6 −1 Robust.Shared/Random/RobustRandom.cs
+3 −1 Robust.Shared/Robust.Shared.csproj
+2 −3 Robust.Shared/Serialization/TypeSerializers/Implementations/ComponentRegistrySerializer.cs
+2 −1 Robust.Shared/Toolshed/TypeParsers/EntityTypeParser.cs
+3 −3 Robust.Shared/ViewVariables/ViewVariablesManager.Domains.cs
+4 −2 Robust.UnitTesting/RobustIntegrationTest.cs
+59 −0 Robust.UnitTesting/Server/GameObjects/ArchTests.cs
+20 −20 Robust.UnitTesting/Server/GameObjects/Components/Container_Test.cs
+1 −1 Robust.UnitTesting/Server/GameObjects/Components/Transform_Test.cs
+4 −4 Robust.UnitTesting/Shared/GameObjects/EntityEventBusTests.ComponentEvent.cs
+28 −12 Robust.UnitTesting/Shared/GameObjects/EntityManager_Components_Tests.cs
+2 −2 Robust.UnitTesting/Shared/GameObjects/Systems/TransformSystemTests.cs
+1 −1 Robust.UnitTesting/Shared/GameState/ComponentStateTests.cs
+3 −2 Robust.UnitTesting/Shared/Map/GridSplit_Tests.cs
+2 −3 Robust.UnitTesting/Shared/Map/MapManager_Tests.cs
+1 −0 Robust.UnitTesting/Shared/Spawning/EntitySpawnHelpersTest.cs
+1 −1 Robust.UnitTesting/Shared/Toolshed/ToolshedParserTest.cs

0 comments on commit af4c19b

Please sign in to comment.