Skip to content

Commit

Permalink
Updated Assembly Info
Browse files Browse the repository at this point in the history
Slightly optimized memory usage
  • Loading branch information
Jarno458 committed Jan 20, 2022
1 parent 7f634a2 commit 71c1244
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions TsRandomizer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("694e46c5-fd46-4cc8-8b71-d381e154ccf7")]
[assembly: AssemblyVersion("0.1.3.5")]
[assembly: AssemblyFileVersion("0.1.3.5")]
[assembly: AssemblyVersion("0.1.3.6")]
[assembly: AssemblyFileVersion("0.1.3.6")]

[assembly: InternalsVisibleTo("TsRandomizer.Tests")]
[assembly: InternalsVisibleTo("TsRandomizerSeedGeneratah")]
4 changes: 3 additions & 1 deletion TsRandomizer/Randomisation/ItemLocationMap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,12 +189,14 @@ static int CalculateCapacity(SeedOptions options)
{
var capacity = 166;

if (options.StartWithTalaria)
capacity += 1;
if (options.DownloadableItems)
capacity += 14;
if (options.GyreArchives)
capacity += 9;
if (options.Cantoran)
capacity++;
capacity += 1;
if (options.LoreChecks)
capacity += 22;

Expand Down

0 comments on commit 71c1244

Please sign in to comment.