ソースを参照

Fix status consequence descriptions

vintage
Fen Dweller 6年前
親
コミット
f3c7ae477c
1個のファイルの変更、3行の追加、1行の削除
  1. +3
    -1
      src/game/combat/consequences.ts

+ 3
- 1
src/game/combat/consequences.ts ファイルの表示

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


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


読み込み中…
キャンセル
保存