Skip to content

Commit

Permalink
Update Submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
VMSolidus committed Nov 1, 2024
1 parent d6bb182 commit 03663e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RobustToolbox
Submodule RobustToolbox updated 76 files
+1 −1 MSBuild/Robust.Engine.Version.props
+63 −0 RELEASE-NOTES.md
+4 −1 Resources/EnginePrototypes/Audio/audio_entities.yml
+45 −1 Robust.Analyzers/DataDefinitionAnalyzer.cs
+68 −4 Robust.Analyzers/DataDefinitionFixer.cs
+5 −0 Robust.Analyzers/Robust.Analyzers.csproj
+23 −54 Robust.Client/Audio/AudioSystem.cs
+2 −2 Robust.Client/Debugging/DebugPhysicsSystem.cs
+1 −1 Robust.Client/GameObjects/EntitySystems/ContainerSystem.cs
+1 −1 Robust.Client/GameObjects/EntitySystems/DebugLightTreeSystem.cs
+1 −1 Robust.Client/GameObjects/EntitySystems/GridChunkBoundsDebugSystem.cs
+23 −9 Robust.Client/GameStates/ClientGameStateManager.cs
+16 −20 Robust.Client/GameStates/GameStateProcessor.cs
+1 −1 Robust.Client/GameStates/IClientGameStateManager.cs
+3 −3 Robust.Client/GameStates/IGameStateProcessor.cs
+1 −1 Robust.Client/GameStates/NetInterpOverlay.cs
+7 −14 Robust.Client/Graphics/ClientEye/EyeManager.cs
+11 −7 Robust.Client/Graphics/ClientEye/IEyeManager.cs
+6 −3 Robust.Client/Graphics/Clyde/Clyde.HLR.cs
+1 −1 Robust.Client/Graphics/Clyde/Clyde.Textures.cs
+4 −4 Robust.Client/Placement/Modes/AlignSnapgridCenter.cs
+6 −6 Robust.Client/Placement/PlacementManager.cs
+3 −2 Robust.Client/Placement/PlacementMode.cs
+1 −1 Robust.Client/Placement/PlacementOverlay.cs
+31 −8 Robust.Client/Replays/Loading/ReplayLoadManager.Checkpoints.cs
+2 −2 Robust.Client/Replays/Loading/ReplayLoadManager.Implicit.cs
+2 −0 Robust.Client/Replays/Loading/ReplayLoadManager.cs
+2 −2 Robust.Client/Replays/Playback/ReplayPlaybackManager.Time.cs
+2 −2 Robust.Client/Replays/Playback/ReplayPlaybackManager.cs
+3 −1 Robust.Client/UserInterface/Controls/LineEdit.cs
+1 −0 Robust.Roslyn.Shared/Diagnostics.cs
+10 −8 Robust.Serialization.Generator/Generator.cs
+31 −19 Robust.Server/Audio/AudioSystem.cs
+4 −2 Robust.Server/GameStates/PvsSystem.GetStates.cs
+1 −7 Robust.Server/Placement/PlacementManager.cs
+3 −0 Robust.Server/Robust.Server.csproj
+1 −1 Robust.Server/ServerStatus/WatchdogApi.cs
+2 −0 Robust.Server/run_server.bat
+2 −2 Robust.Server/server_config.toml
+2 −0 Robust.Shared/Audio/Components/AudioComponent.cs
+40 −6 Robust.Shared/Audio/Systems/SharedAudioSystem.cs
+8 −3 Robust.Shared/CVars.cs
+122 −49 Robust.Shared/Configuration/ConfigurationManager.cs
+21 −1 Robust.Shared/Configuration/IConfigurationManager.cs
+13 −8 Robust.Shared/Containers/BaseContainer.cs
+1 −10 Robust.Shared/Containers/Container.cs
+1 −3 Robust.Shared/Containers/ContainerManagerComponent.cs
+1 −10 Robust.Shared/Containers/ContainerSlot.cs
+140 −31 Robust.Shared/Containers/SharedContainerSystem.cs
+42 −29 Robust.Shared/GameObjects/ComponentState.cs
+13 −2 Robust.Shared/GameObjects/Components/Transform/TransformComponent.cs
+8 −3 Robust.Shared/GameObjects/Components/UserInterface/UserInterfaceComponent.cs
+2 −4 Robust.Shared/GameObjects/EntityManager.Components.cs
+1 −1 Robust.Shared/GameObjects/EntityManager.cs
+3 −4 Robust.Shared/GameObjects/EntityState.cs
+1 −1 Robust.Shared/GameObjects/IEntityManager.Components.cs
+8 −3 Robust.Shared/GameObjects/Systems/SharedGridTraversalSystem.cs
+40 −29 Robust.Shared/GameObjects/Systems/SharedMapSystem.Grid.cs
+2 −1 Robust.Shared/GameObjects/Systems/SharedTransformSystem.Component.cs
+128 −29 Robust.Shared/GameObjects/Systems/SharedTransformSystem.Coordinates.cs
+5 −2 Robust.Shared/GameObjects/Systems/SharedTransformSystem.cs
+41 −34 Robust.Shared/GameObjects/Systems/SharedUserInterfaceSystem.cs
+2 −0 Robust.Shared/GameStates/ComponentStateEvents.cs
+28 −29 Robust.Shared/Map/Components/MapGridComponent.cs
+22 −96 Robust.Shared/Map/EntityCoordinates.cs
+1 −1 Robust.Shared/Network/AuthManager.cs
+1 −1 Robust.Shared/Physics/Systems/SharedBroadphaseSystem.cs
+2 −2 Robust.Shared/Prototypes/EntityPrototype.cs
+1 −2 Robust.Shared/Serialization/Manager/Definition/DataDefinition.cs
+12 −0 Robust.Shared/Serialization/Manager/Definition/DataDefinitionUtility.cs
+45 −14 Robust.Shared/Threading/ParallelManager.cs
+58 −10 Robust.Shared/Utility/FormattedMessage.MarkupParser.cs
+69 −10 Robust.Shared/Utility/FormattedMessage.cs
+6 −6 Robust.UnitTesting/Client/GameObjects/Components/TransformComponentTests.cs
+1 −1 Robust.UnitTesting/Shared/GameObjects/EntityState_Tests.cs
+1 −1 Robust.UnitTesting/Shared/GameState/NoSharedReferencesTest.cs

0 comments on commit 03663e7

Please sign in to comment.