Skip to content

Commit

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

0 comments on commit dc33b99

Please sign in to comment.