From 76fccd80ac4eec4f9429095b6b0d61278ebfe8b7 Mon Sep 17 00:00:00 2001 From: KoRnoliX <63583686+dabrowskif@users.noreply.github.com> Date: Fri, 27 Aug 2021 01:05:59 +0200 Subject: [PATCH] Fix transform atidote unpin after using rebirthing fixes #13306 (#13400) * Fix habits' dropdown list overlap Fix habits' tags dropdown list to properly close after expanding difficulties dropdown list so they don't overlap * Fix transform antidote unpin after rebirth Fix transformation buff antidote to properly unpin from Rewards section after using Orb of Rebirth * Revert "Fix habits' dropdown list overlap" This reverts commit 6a72e27b89dfaa337169ea0137ec1e7b0ca11c02. Co-authored-by: Sabe Jones --- website/common/script/ops/rebirth.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/common/script/ops/rebirth.js b/website/common/script/ops/rebirth.js index 4d3c57ce23..4106ef9dd4 100644 --- a/website/common/script/ops/rebirth.js +++ b/website/common/script/ops/rebirth.js @@ -8,6 +8,7 @@ import { import equip from './equip'; import { removePinnedGearByClass } from './pinnedGearUtils'; import isFreeRebirth from '../libs/isFreeRebirth'; +import setDebuffPotionItems from '../libs/setDebuffPotionItems'; const USERSTATSLIST = ['per', 'int', 'con', 'str', 'points', 'gp', 'exp', 'mp']; @@ -108,6 +109,7 @@ export default function rebirth (user, tasks = [], req = {}, analytics) { if (user.addNotification) user.addNotification('REBIRTH_ACHIEVEMENT'); user.stats.buffs = {}; + setDebuffPotionItems(user); return [ { user, tasks },