소스 검색

Fix second person pronouns not being marked as plural

This caused problems when conjugating verbs.
master
Fen Dweller 3 년 전
부모
커밋
355894049a
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +1
    -1
      src/game/creatures/player.ts
  2. +2
    -2
      src/game/language.ts

+ 1
- 1
src/game/creatures/player.ts 파일 보기

@@ -23,7 +23,7 @@ export default class Player extends Creature {
const stomach = new Stomach(this, 2, new ConstantDamageFormula(new Damage({ amount: 20, type: DamageType.Acid, target: Vigor.Health }, { amount: 10, type: DamageType.Crush, target: Vigor.Health })))
this.addVoreContainer(stomach)

this.perspective = POV.Second
this.perspective = POV.First

this.ai = new VoreAI(this)
}


+ 2
- 2
src/game/language.ts 파일 보기

@@ -537,14 +537,14 @@ export const SecondPersonPronouns = new Pronoun({
objective: 'you',
possessive: 'your',
reflexive: 'yourself'
})
}, false, true)

export const FirstPersonPronouns = new Pronoun({
subjective: 'I',
objective: 'me',
possessive: 'my',
reflexive: 'myself'
})
}, false, true)

export class PronounAsNoun extends Noun {
constructor (private pronouns: Pronoun, opt: WordOptions = emptyConfig) {


불러오는 중...
취소
저장