Skip to content

Commit

Permalink
Crescent 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dvir001 committed Jan 29, 2024
1 parent 5628afd commit d8f9d6a
Show file tree
Hide file tree
Showing 4 changed files with 3,234 additions and 1,859 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ private void FixGridAtmosCommand(IConsoleShell shell, string argstr, string[] ar
return;
}

var mixtures = new GasMixture[10]; // Add one per added array
var mixtures = new GasMixture[11]; // Add one per added array
for (var i = 0; i < mixtures.Length; i++)
mixtures[i] = new GasMixture(Atmospherics.CellVolume) { Temperature = Atmospherics.T20C };

Expand Down Expand Up @@ -76,6 +76,13 @@ private void FixGridAtmosCommand(IConsoleShell shell, string argstr, string[] ar
mixtures[9].Clear();
mixtures[9].AdjustMoles(Gas.Plasma, Atmospherics.MolesCellShuttle);

// Frontier - 10: Sauna (GM)
mixtures[10].Clear();
mixtures[10].AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesStandard);
mixtures[10].AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesStandard);
mixtures[10].AdjustMoles(Gas.WaterVapor, Atmospherics.NitrogenMolesStandard);
mixtures[10].Temperature = 340f; // Sauna

foreach (var arg in args)
{
if (!NetEntity.TryParse(arg, out var netEntity) || !TryGetEntity(netEntity, out var euid))
Expand Down
Loading

0 comments on commit d8f9d6a

Please sign in to comment.