Skip to content

Commit ff32062

Browse files
committed
Start with starting blue chu jelly count
1 parent 68511a7 commit ff32062

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

src/services/__snapshots__/logic-helper.test.js.snap

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1502,6 +1502,7 @@ BooleanExpression {
15021502

15031503
exports[`LogicHelper initialize when in swordless mode sets sword to 0 in the starting items and adds impossible items 1`] = `
15041504
{
1505+
"Blue Chu Jelly": 0,
15051506
"Boat's Sail": 1,
15061507
"Progressive Sword": 0,
15071508
"Tingle Statue": 0,
@@ -1520,6 +1521,7 @@ exports[`LogicHelper initialize when in swordless mode sets sword to 0 in the st
15201521

15211522
exports[`LogicHelper initialize when starting without a sword sets sword to 0 in the starting items 1`] = `
15221523
{
1524+
"Blue Chu Jelly": 0,
15231525
"Boat's Sail": 1,
15241526
"Progressive Sword": 0,
15251527
"Tingle Statue": 0,
@@ -1531,6 +1533,7 @@ exports[`LogicHelper initialize when starting without a sword sets sword to 0 in
15311533

15321534
exports[`LogicHelper initialize with no starting shards, no starting gear, and starting with a sword sets the starting and impossible items 1`] = `
15331535
{
1536+
"Blue Chu Jelly": 0,
15341537
"Boat's Sail": 1,
15351538
"Progressive Sword": 1,
15361539
"Tingle Statue": 0,
@@ -1542,6 +1545,7 @@ exports[`LogicHelper initialize with no starting shards, no starting gear, and s
15421545

15431546
exports[`LogicHelper initialize with starting gear sets the starting items based on the starting gear 1`] = `
15441547
{
1548+
"Blue Chu Jelly": 0,
15451549
"Boat's Sail": 1,
15461550
"Bombs": 1,
15471551
"Deku Leaf": 1,
@@ -1555,6 +1559,7 @@ exports[`LogicHelper initialize with starting gear sets the starting items based
15551559

15561560
exports[`LogicHelper initialize with starting shards sets the number of starting shards 1`] = `
15571561
{
1562+
"Blue Chu Jelly": 0,
15581563
"Boat's Sail": 1,
15591564
"Progressive Sword": 1,
15601565
"Tingle Statue": 0,

src/services/logic-helper.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -796,6 +796,7 @@ class LogicHelper {
796796
Permalink.OPTIONS.NUM_STARTING_TRIFORCE_SHARDS,
797797
),
798798
[this.ITEMS.TINGLE_STATUE]: startingTingleStatues,
799+
[this.BLUE_CHU_JELLY_COUNT_ITEM]: this.startingBlueChuJellyCount(),
799800
};
800801
this.impossibleItems = {};
801802

0 commit comments

Comments
 (0)