Skip to content

Commit e2a3fd7

Browse files
committed
insanely minor fix
1 parent 4159fa3 commit e2a3fd7

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/Reset.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1115,6 +1115,8 @@ export const singularity = (setSingNumber = -1) => {
11151115
return
11161116
}
11171117

1118+
const antiquitiesPurchased = runes.antiquities.level > 0
1119+
11181120
// setSingNumber is only not -1 when we are entering and exiting a challenge.
11191121
if (setSingNumber === -1) {
11201122
// get total cube blessings for history
@@ -1177,7 +1179,7 @@ export const singularity = (setSingNumber = -1) => {
11771179
}
11781180
} else {
11791181
const incrementHighestSing = player.singularityCount === player.highestSingularityCount
1180-
&& setSingNumber > player.singularityCount
1182+
&& setSingNumber > player.singularityCount && antiquitiesPurchased
11811183
player.singularityCount = setSingNumber
11821184
if (incrementHighestSing) {
11831185
player.highestSingularityCount++

0 commit comments

Comments
 (0)