@@ -701,32 +701,32 @@ protected void QueueDel(EntityUid? uid)
701701
702702 #region Entity Spawning
703703
704- // This method will be obsoleted soon.
704+ // This method will be obsoleted soon(TM) .
705705 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
706706 protected EntityUid Spawn ( string ? prototype , EntityCoordinates coordinates )
707707 {
708708 return ( ( IEntityManager ) EntityManager ) . SpawnEntity ( prototype , coordinates ) ;
709709 }
710710
711- /// <inheritdoc cref="IEntityManager.Spawn(string?, MapCoordinates, ComponentRegistry?)" />
711+ /// <inheritdoc cref="IEntityManager.Spawn(string?, MapCoordinates, ComponentRegistry?, Angle )" />
712712 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
713- protected EntityUid Spawn ( string ? prototype , MapCoordinates coordinates , Angle rotation = default ! )
714- => EntityManager . Spawn ( prototype , coordinates , rotation : rotation ) ;
713+ protected EntityUid Spawn ( string ? prototype , MapCoordinates coordinates , ComponentRegistry ? overrides = null , Angle rotation = default )
714+ => EntityManager . Spawn ( prototype , coordinates , overrides , rotation ) ;
715715
716- /// <inheritdoc cref="IEntityManager.Spawn(string?, ComponentRegistry?)" />
716+ /// <inheritdoc cref="IEntityManager.Spawn(string?, ComponentRegistry?, bool )" />
717717 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
718718 protected EntityUid Spawn ( string ? prototype = null , ComponentRegistry ? overrides = null , bool doMapInit = true )
719719 => EntityManager . Spawn ( prototype , overrides , doMapInit ) ;
720720
721721 /// <inheritdoc cref="IEntityManager.SpawnAttachedTo" />
722722 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
723- protected EntityUid SpawnAttachedTo ( string ? prototype , EntityCoordinates coordinates )
724- => EntityManager . SpawnAttachedTo ( prototype , coordinates ) ;
723+ protected EntityUid SpawnAttachedTo ( string ? prototype , EntityCoordinates coordinates , ComponentRegistry ? overrides = null )
724+ => EntityManager . SpawnAttachedTo ( prototype , coordinates , overrides ) ;
725725
726726 /// <inheritdoc cref="IEntityManager.SpawnAtPosition" />
727727 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
728- protected EntityUid SpawnAtPosition ( string ? prototype , EntityCoordinates coordinates )
729- => EntityManager . SpawnAtPosition ( prototype , coordinates ) ;
728+ protected EntityUid SpawnAtPosition ( string ? prototype , EntityCoordinates coordinates , ComponentRegistry ? overrides = null )
729+ => EntityManager . SpawnAtPosition ( prototype , coordinates , overrides ) ;
730730
731731 /// <inheritdoc cref="IEntityManager.TrySpawnInContainer" />
732732 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
0 commit comments