Skip to content

Commit

Permalink
Fix: Store immersifier in dungeon task
Browse files Browse the repository at this point in the history
  • Loading branch information
LmeSzinc committed Dec 27, 2023
1 parent 064e054 commit 03b1e49
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions module/config/config_updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -721,6 +721,9 @@ def set_daily(quest, value):
deep_set(data, keys='Rogue.RogueWorld.UseStamina', value=False)
if deep_get(data, keys='Rogue.RogueWorld.UseStamina') is True:
deep_set(data, keys='Rogue.RogueWorld.UseImmersifier', value=True)
# Store immersifier in dungeon task
if deep_get(data, keys='Rogue.RogueWorld.UseImmersifier') is True:
deep_set(data, keys='Dungeon.Scheduler.Enable', value=True)

return data

Expand Down

0 comments on commit 03b1e49

Please sign in to comment.