diff --git a/package.json b/package.json index 902e75c..82d4e94 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lingdocs/pashto-inflector", - "version": "1.6.7", + "version": "1.6.8", "author": "lingdocs.com", "description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations", "homepage": "https://verbs.lingdocs.com", diff --git a/src/lib/verb-conjugation.ts b/src/lib/verb-conjugation.ts index 49ba169..08e2333 100644 --- a/src/lib/verb-conjugation.ts +++ b/src/lib/verb-conjugation.ts @@ -416,7 +416,7 @@ function makePerfectContent(info: T.NonComboVerbInfo): T.PerfectContent { const present = addToForm([...pastPart, " "], equativeEndings.present); const habitual = addToForm([...pastPart, " "], equativeEndings.habitual); const subjunctive = addToForm([...pastPart, " "], equativeEndings.subjunctive); - const future = addToForm([baParticle, " ", ...pastPart, " "], equativeEndings.subjunctive); + const future = addToForm([baParticle, " ", ...pastPart, " "], equativeEndings.habitual); const affirmational = addToForm([baParticle, " ", ...pastPart, " "], equativeEndings.past.short); const pastSubjunctiveHypothetical = addToForm([...pastPart, " "], equativeEndings.pastSubjunctive); return { @@ -532,7 +532,7 @@ function makePassivePerfectContent(info: T.StativeCompoundVerbInfo): T.PerfectCo ); const future = addToForm( [baParticle, " ", info.complement, " ", passiveStativeBridge, " ", pPart, " "], - equativeEndings.subjunctive, + equativeEndings.habitual, ); const affirmational = addToForm( [baParticle, " ", info.complement, " ", passiveStativeBridge, " ", pPart, " "],