mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
The End of Entity (Komm, Süsser Todd: Part 1.0) (#2295)
Co-authored-by: Paul Ritter <ritter.paul1@googlemail.com>
This commit is contained in:
committed by
GitHub
parent
f8bebee904
commit
196e2bb427
@@ -50,20 +50,20 @@ namespace Robust.Server.GameObjects
|
||||
|
||||
void IServerEntityManagerInternal.FinishEntityLoad(IEntity entity, IEntityLoadContext? context)
|
||||
{
|
||||
LoadEntity((Entity) entity, context);
|
||||
LoadEntity(entity, context);
|
||||
}
|
||||
|
||||
void IServerEntityManagerInternal.FinishEntityInitialization(IEntity entity)
|
||||
{
|
||||
InitializeEntity((Entity) entity);
|
||||
InitializeEntity(entity);
|
||||
}
|
||||
|
||||
void IServerEntityManagerInternal.FinishEntityStartup(IEntity entity)
|
||||
{
|
||||
StartEntity((Entity) entity);
|
||||
StartEntity(entity);
|
||||
}
|
||||
|
||||
private protected override Entity CreateEntity(string? prototypeName, EntityUid? uid = null)
|
||||
private protected override IEntity CreateEntity(string? prototypeName, EntityUid? uid = null)
|
||||
{
|
||||
var entity = base.CreateEntity(prototypeName, uid);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user