Skip to content

Commit

Permalink
You're a Butt
Browse files Browse the repository at this point in the history
  • Loading branch information
Alchebun committed Jul 27, 2024
1 parent 3355421 commit 10f6ef8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from https://github.com/vgstation-coders/vgstation13, editted by Alchebun",
"copyright": "Taken from https://github.com/vgstation-coders/vgstation13, edited by Alchebun",
"size": {
"x": 32,
"y": 32
Expand Down
2 changes: 1 addition & 1 deletion RobustToolbox
Submodule RobustToolbox updated 84 files
+3 −3 Directory.Packages.props
+1 −1 MSBuild/Robust.Engine.Version.props
+0 −92 RELEASE-NOTES.md
+3 −3 Resources/Locale/en-US/commands.ftl
+1 −2 Robust.Benchmarks/Configs/DefaultSQLConfig.cs
+2 −4 Robust.Benchmarks/Exporters/SQLExporter.cs
+2 −2 Robust.Client/GameObjects/Components/Renderable/SpriteComponent.cs
+8 −14 Robust.Client/GameObjects/EntitySystems/AnimationPlayerSystem.cs
+4 −4 Robust.Client/GameStates/ClientGameStateManager.cs
+1 −1 Robust.Client/Graphics/Overlays/Overlay.cs
+2 −2 Robust.Client/ResourceManagement/ResourceCache.Preload.cs
+22 −30 Robust.Client/ResourceManagement/ResourceCache.cs
+0 −9 Robust.Client/UserInterface/Control.cs
+0 −7 Robust.Client/UserInterface/Controls/ContainerButton.cs
+9 −27 Robust.Client/UserInterface/Controls/OutputPanel.cs
+2 −2 Robust.Client/UserInterface/Controls/RichTextLabel.cs
+0 −13 Robust.Client/UserInterface/Controls/TabContainer.cs
+0 −6 Robust.Client/UserInterface/Controls/WindowRoot.cs
+0 −20 Robust.Client/UserInterface/CustomControls/DebugConsole.xaml.cs
+17 −18 Robust.Client/UserInterface/RichTextEntry.cs
+2 −21 Robust.Client/UserInterface/UserInterfaceManager.Scaling.cs
+0 −2 Robust.Client/UserInterface/UserInterfaceManager.cs
+1 −1 Robust.LoaderApi
+0 −12 Robust.Server/GameStates/PvsData.cs
+3 −3 Robust.Server/GameStates/PvsSystem.Dirty.cs
+16 −5 Robust.Server/GameStates/PvsSystem.Leave.cs
+0 −85 Robust.Server/GameStates/PvsSystem.Send.cs
+0 −73 Robust.Server/GameStates/PvsSystem.Serialize.cs
+46 −1 Robust.Server/GameStates/PvsSystem.Session.cs
+57 −32 Robust.Server/GameStates/PvsSystem.cs
+1 −0 Robust.Server/Player/PlayerManager.cs
+2 −0 Robust.Server/Program.cs
+1 −1 Robust.Server/ServerHub/HubManager.cs
+2 −2 Robust.Server/ServerStatus/StatusHost.Acz.cs
+4 −3 Robust.Server/ServerStatus/StatusHost.Handlers.cs
+1 −1 Robust.Shared.CompNetworkGenerator/ComponentNetworkGenerator.cs
+1 −1 Robust.Shared/Analyzers/ComponentNetworkGeneratorAuxiliary.cs
+2 −8 Robust.Shared/CVars.cs
+0 −304 Robust.Shared/Collections/RingBufferList.cs
+1 −1 Robust.Shared/Console/Commands/DumpEventTablesCommand.cs
+6 −1 Robust.Shared/Console/Commands/TeleportCommands.cs
+10 −28 Robust.Shared/Console/CompletionHelper.cs
+10 −10 Robust.Shared/Containers/SharedContainerSystem.Insert.cs
+7 −7 Robust.Shared/Containers/SharedContainerSystem.Remove.cs
+0 −442 Robust.Shared/ContentPack/AssemblyTypeChecker.ReportBadReferences.cs
+24 −37 Robust.Shared/ContentPack/AssemblyTypeChecker.cs
+1 −2 Robust.Shared/ContentPack/Sandbox.yml
+24 −7 Robust.Shared/GameObjects/CompIdx.cs
+2 −5 Robust.Shared/GameObjects/ComponentEventArgs.cs
+4 −28 Robust.Shared/GameObjects/ComponentFactory.cs
+9 −18 Robust.Shared/GameObjects/Entity.cs
+158 −135 Robust.Shared/GameObjects/EntityEventBus.Directed.cs
+0 −3 Robust.Shared/GameObjects/EntityEventBus.Ordering.cs
+46 −67 Robust.Shared/GameObjects/EntityManager.Components.cs
+10 −10 Robust.Shared/GameObjects/EntityManager.LifeCycle.cs
+0 −3 Robust.Shared/GameObjects/EntityManager.Systems.cs
+1 −1 Robust.Shared/GameObjects/EntityManager.cs
+1 −9 Robust.Shared/GameObjects/EntitySystem.Proxy.cs
+0 −7 Robust.Shared/GameObjects/EntitySystemMessages/EntityRenamedEvent.cs
+0 −12 Robust.Shared/GameObjects/IComponentFactory.cs
+2 −2 Robust.Shared/GameObjects/IEntityManager.Components.cs
+0 −3 Robust.Shared/GameObjects/IEntityManager.Systems.cs
+1 −1 Robust.Shared/GameObjects/NetEntity.cs
+4 −45 Robust.Shared/GameObjects/Systems/EntityLookupSystem.ComponentQueries.cs
+1 −8 Robust.Shared/GameObjects/Systems/MetaDataSystem.cs
+1 −1 Robust.Shared/Graphics/Eye.cs
+0 −6 Robust.Shared/Localization/LocalizationManager.Functions.cs
+55 −208 Robust.Shared/Network/HappyEyeballsHttp.cs
+5 −4 Robust.Shared/Network/Messages/MsgPlayerList.cs
+30 −20 Robust.Shared/Network/Messages/MsgState.cs
+64 −79 Robust.Shared/Physics/Systems/SharedBroadphaseSystem.cs
+0 −26 Robust.Shared/Player/ActorSystem.cs
+8 −11 Robust.Shared/Prototypes/IPrototypeManager.cs
+2 −2 Robust.Shared/Prototypes/PrototypeManager.Categories.cs
+8 −18 Robust.Shared/Prototypes/PrototypeManager.cs
+0 −7 Robust.Shared/Random/RandomExtensions.cs
+1 −2 Robust.Shared/Toolshed/Commands/Values/EntCommand.cs
+2 −5 Robust.Shared/Toolshed/TypeParsers/EntityTypeParser.cs
+5 −9 Robust.Shared/Utility/DebugTools.cs
+7 −58 Robust.Shared/Utility/FormattedMessage.cs
+1 −2 Robust.Shared/Utility/MarkupNode.cs
+1 −1 Robust.UnitTesting/Server/GameObjects/Components/Container_Test.cs
+0 −95 Robust.UnitTesting/Shared/Collections/RingBufferListTest.cs
+1 −93 Robust.UnitTesting/Shared/GameObjects/EntityEventBusTests.ComponentEvent.cs

0 comments on commit 10f6ef8

Please sign in to comment.