Browse Source

Fix status consequence descriptions

vintage
Fen Dweller 5 years ago
parent
commit
f3c7ae477c
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/game/combat/consequences.ts

+ 3
- 1
src/game/combat/consequences.ts View File

@@ -96,7 +96,9 @@ export class StatusConsequence extends Consequence {

describe (user: Creature, target: Creature): LogEntry {
return new LogLine(
`Applies a ${this.statusMaker(user, target)} effect.`
`Applies a `,
this.statusMaker(user, target).name.toString(),
` effect.`
)
}
}


Loading…
Cancel
Save