Automatic Open tests (#1142)

* auto eng obt

* Update CP14RoundEndSystem.CBT.cs

* Update CP14EdSystem.cs

* cbt cbt!

* Update CP14RoundEndSystem.CBT.cs
This commit is contained in:
Ed
2025-04-15 23:09:49 +03:00
committed by GitHub
parent c61a76fa69
commit b40cbfb5d7
10 changed files with 141 additions and 45 deletions

View File

@@ -1,3 +1,4 @@
using Content.Shared.CCVar;
using Robust.Shared;
using Robust.Shared.Configuration;
@@ -13,5 +14,12 @@ public sealed class CP14EdSystem : EntitySystem
public override void Initialize()
{
_cfg.SetCVar(CVars.EntitiesCategoryFilter, "ForkFiltered");
_cfg.OnValueChanged(CCVars.Language, OnLanguageChange, true);
}
private void OnLanguageChange(string obj)
{
_cfg.SetCVar(CVars.LocCultureName, obj);
}
}