mirror of
https://github.com/thepaperpilot/Planar-Pioneers.git
synced 2024-11-21 16:13:54 +00:00
Make final relic display as winning the game
This commit is contained in:
parent
ee9f34c857
commit
96df564877
1 changed files with 4 additions and 1 deletions
|
@ -874,7 +874,10 @@ export function createPlane(
|
|||
};
|
||||
break;
|
||||
case "relic":
|
||||
description = `Gain the ${tier}-tier planar relic (${relics[tier]})`;
|
||||
description =
|
||||
tier === "ultimatum"
|
||||
? "Win the game!"
|
||||
: `Gain the ${tier}-tier planar relic (${relics[tier]})`;
|
||||
onComplete = () => {
|
||||
if (tier === "ultimatum") {
|
||||
hasWon.value = true;
|
||||
|
|
Loading…
Reference in a new issue