Resolve 'EntitySystem.Get<T>()' is obsolete in content (#27936)
* PROJECT 0 WARNINGS: Resolve `'EntitySystem.Get<T>()' is obsolete` in content * pass entman * dog ass test * webeditor
This commit is contained in:
@@ -7,6 +7,8 @@ namespace Content.Server.Administration.Commands;
|
||||
[AdminCommand(AdminFlags.VarEdit)]
|
||||
public sealed class ThrowScoreboardCommand : IConsoleCommand
|
||||
{
|
||||
[Dependency] private readonly IEntityManager _e = default!;
|
||||
|
||||
public string Command => "throwscoreboard";
|
||||
|
||||
public string Description => Loc.GetString("throw-scoreboard-command-description");
|
||||
@@ -20,6 +22,6 @@ public sealed class ThrowScoreboardCommand : IConsoleCommand
|
||||
shell.WriteLine(Help);
|
||||
return;
|
||||
}
|
||||
EntitySystem.Get<GameTicker>().ShowRoundEndScoreboard();
|
||||
_e.System<GameTicker>().ShowRoundEndScoreboard();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user