From: Daniel Karbach Date: Thu, 28 Mar 2024 14:52:51 +0000 (+0100) Subject: fix missing gt bosses on merge X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=69d9cc4f72b11616642a364827c096ed80e666c7;p=alttp.git fix missing gt bosses on merge --- diff --git a/resources/js/helpers/tracker.js b/resources/js/helpers/tracker.js index 944da91..4f44d3c 100644 --- a/resources/js/helpers/tracker.js +++ b/resources/js/helpers/tracker.js @@ -1940,6 +1940,9 @@ export const mergeStates = (autoState, manualState) => { next['tr-medallion'] = manualState['tr-medallion']; next['gt-crystals'] = manualState['gt-crystals']; next['ganon-crystals'] = manualState['ganon-crystals']; + next['gt-bot-boss'] = manualState['gt-bot-boss']; + next['gt-mid-boss'] = manualState['gt-mid-boss']; + next['gt-top-boss'] = manualState['gt-top-boss']; //console.log(next); return next; };