Rename "Server Info" to ServerInfo (#15436)

This commit is contained in:
Leon Friedrich
2023-04-16 12:55:59 +12:00
committed by GitHub
parent 9269212199
commit 116670ae8a
39 changed files with 27 additions and 27 deletions

View File

@@ -6,7 +6,7 @@ using Robust.Shared.Log;
namespace Content.Server.Info;
public class InfoSystem : EntitySystem
public sealed class InfoSystem : EntitySystem
{
[Dependency] private readonly IResourceManager _res = default!;
[Dependency] private readonly IConfigurationManager _cfg = default!;
@@ -24,7 +24,7 @@ public class InfoSystem : EntitySystem
var rules = "Server could not read its rules.";
try
{
rules = _res.ContentFileReadAllText($"/Server Info/{path}");
rules = _res.ContentFileReadAllText($"/ServerInfo/{path}");
}
catch (Exception)
{