瀏覽代碼

Fix heals not...healing

vintage
Fen Dweller 5 年之前
父節點
當前提交
c0055d6859
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      src/game/entity.ts

+ 2
- 2
src/game/entity.ts 查看文件

@@ -128,11 +128,11 @@ export class Creature extends Vore implements Combatant {

if (instance.target in Vigor) {
// just deal damage
this.vigors[instance.target as Vigor] -= instance.amount * factor * resistance
this.vigors[instance.target as Vigor] -= instance.amount * resistance
} else if (instance.target in Stat) {
// drain the stats, then deal damage to match
const startVigors = this.maxVigors
this.stats[instance.target as Stat] -= instance.amount * factor * resistance
this.stats[instance.target as Stat] -= instance.amount * resistance
const endVigors = this.maxVigors

Object.keys(Vigor).map(vigor => {


Loading…
取消
儲存