Explorar el Código

Fix conjugation of 'heal' in digestion text

master
Fen Dweller hace 5 años
padre
commit
6f50f1670a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/game/vore.ts

+ 1
- 1
src/game/vore.ts Ver fichero

@@ -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())
)
}
}


Cargando…
Cancelar
Guardar