Browse Source

Fix conjugation of 'heal' in digestion text

master
Fen Dweller 5 years ago
parent
commit
6f50f1670a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/game/vore.ts

+ 1
- 1
src/game/vore.ts View File

@@ -312,7 +312,7 @@ export class Stomach extends NormalVoreContainer {
this.owner.takeDamage(heal)
return new LogLines(
super.digest(preys),
new LogLine(`${this.owner.name.capital} heals for `, this.owner.effectiveDamage(heal).renderShort())
new LogLine(`${this.owner.name.capital} ${this.owner.name.conjugate(new Verb("heal"))} for `, this.owner.effectiveDamage(heal).renderShort())
)
}
}


Loading…
Cancel
Save