Leon Friedrich
Leon Friedrich
``` Caught exception in entsys System.ArgumentException: TimeSpan does not accept floating point Not-a-Number values. at Content.Shared.Throwing.ThrowingSystem.TryThrow(EntityUid uid, Vector2 direction, Single strength, Nullable`1 user, Single pushbackRatio, PhysicsComponent physics, TransformComponent transform, Nullable`1...
From grafana. Something is going wrong while saving the character slots in `SaveCharacterSlotAsync()`. I don't know enough about database gubbins. Is this just an inconsequential error? ``` Caught exception in...
Requires space-wizards/RobustToolbox/pull/3139 Other than one bugfix in `StorageSystem.CloseNestedInterfaces()`, this should be unchanged from the earlier reverted PR (#10308),
This is a partial list of entity prototypes that need to be updated (though in some instances, the system/component itself may need to be fixed). There are several more not...
``` Caught exception while dispatching SystemMessage: System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index') at System.SZArrayHelper.get_Item[T](Int32 index) at Content.Server.Construction.ConstructionSystem.HandleConstructionExamined(EntityUid...
This error was getting spammed on grafana for some time. AFAICT, this was probably a deleted entity that was somehow still inside of some other entity's list of children, so...
These errors appear every now and then on grafana, but they are not very useful without knowing what is triggering the deletion.
Should hopefully prevent issues like the one fixed in space-wizards/space-station-14/pull/10629
This is a combination of two earlier reverted BUI PRs (#3102 and #3104). The PRs had two issues. Firstly, player status/connection changes caused enumeration-modification errors (see #3110). This PR now...
A lot of systems have optional/nullable sound effects, so you quite often see code like ```cs if (component.Sound != null) _audioSys.PlayPvs(component.Sound, uid) ``` So for the sake of convenience, this...