浏览代码

Fix status consequence descriptions

vintage
Fen Dweller 5 年前
父节点
当前提交
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 {
return new LogLine(
`Applies a ${this.statusMaker(user, target)} effect.`
`Applies a `,
this.statusMaker(user, target).name.toString(),
` effect.`
)
}
}


正在加载...
取消
保存