Skip to content

Commit

Permalink
fix(dungeon): no standing still to heal in a dungeon
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Mar 27, 2023
1 parent daf017f commit 968531d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/combat/combat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ export class CombatState {
}

// ooc healing
if(!state.currentEncounter && state.currentPlayer) {
if(!state.currentEncounter && !state.currentDungeon && state.currentPlayer) {
let healingTicks = state.oocHealTicks ?? 10;
let energyTicks = state.oocEnergyTicks ?? 10;

Expand Down

0 comments on commit 968531d

Please sign in to comment.