From 6eb4dda5dedf6b9c909496a0a00d6a4cb1b018fa Mon Sep 17 00:00:00 2001 From: pskfyi Date: Fri, 14 Jan 2022 23:24:12 -0800 Subject: [PATCH] fix: game restarts as expected; closes #88 --- store/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/store/index.js b/store/index.js index e6467fc..ba23e08 100644 --- a/store/index.js +++ b/store/index.js @@ -453,9 +453,7 @@ export const state = () => ({ // update doPrestige (mutation) if this is renamed name: 'Time Travel Precision', description: - 'The time machine could target a certain month instead of a decade, ' + - 'with the proper calibration. Send it to yourself as a child and ' + - 'give your past self even more of a head start.', + 'When you pass your wisdom to your younger self, you will restart at age 8 instead of age 30.', unlockCriteria: { unit: 'missionsCompleted', value: ['Time to Cheat Death', 'Create the Time Machine'], @@ -923,8 +921,10 @@ export const mutations = { }, extendLifespan: (state, months) => { state.playerAgeMax += months + state.gameStopped = false }, decreaseAge: (state, months) => { state.playerAge -= months + state.gameStopped = false }, }