Changes for prototype load parallelization (#13066)
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
584921b423
commit
a323671984
@@ -254,7 +254,10 @@ namespace Content.Server.Atmos.EntitySystems
|
||||
continue;
|
||||
|
||||
if (mixture != null)
|
||||
gases.Add(new GasEntry(gas.Name, mixture.Moles[i], gas.Color));
|
||||
{
|
||||
var gasName = Loc.GetString(gas.Name);
|
||||
gases.Add(new GasEntry(gasName, mixture.Moles[i], gas.Color));
|
||||
}
|
||||
}
|
||||
|
||||
return gases.ToArray();
|
||||
|
||||
Reference in New Issue
Block a user