X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fhelpers%2Ftracker.js;h=f2be2434a3eb69944685b5fd503c765d75089196;hb=6ce22c808bd3025ea252334e516451ddc3b948eb;hp=707e3f708e59f86d2c49cc0f1d622336bd9fa312;hpb=b5a50d74cf042fa7fc874d8184dc37ae20bb74dd;p=alttp.git diff --git a/resources/js/helpers/tracker.js b/resources/js/helpers/tracker.js index 707e3f7..f2be243 100644 --- a/resources/js/helpers/tracker.js +++ b/resources/js/helpers/tracker.js @@ -1620,6 +1620,14 @@ export const makeEmptyState = () => { state[`${dungeon.id}-prize-acquired`] = false; } }); + OVERWORLD_LOCATIONS.forEach(location => { + state[location.id] = false; + }); + UNDERWORLD_LOCATIONS.forEach(location => { + state[location.id] = false; + }); + state['mm-medallion'] = null; + state['tr-medallion'] = null; return state; };