Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
cdc53e6
Added Repo and Model for Bubba Upgrades
Zoma-Ancestral Jan 31, 2026
7ea592a
Added Repo and Model for Gifts and Charisma Upgrades for Bubba
Zoma-Ancestral Jan 31, 2026
9f3d11a
Added Model and Repo for Bubba megaflesh
Zoma-Ancestral Jan 31, 2026
3c3c486
Corrected Repo and Model for BubbaGift
Zoma-Ancestral Jan 31, 2026
b141015
Added Bubba domain class
Zoma-Ancestral Jan 31, 2026
ab0c210
Updated tome line with Bubba megaflesh
Zoma-Ancestral Jan 31, 2026
85e58ff
Merge branch 'main' into feature/clikers
Zoma-Ancestral Feb 4, 2026
14b0d71
Updated Bubba to be more easily usable in UI without happiness messin…
Zoma-Ancestral Feb 4, 2026
d9a6a89
Small change to default value of func
Zoma-Ancestral Feb 4, 2026
7151169
Big sorting of files
Zoma-Ancestral Feb 4, 2026
6067371
Corrected small oopsie
Zoma-Ancestral Feb 4, 2026
c671862
Manually added 2 new companions
Zoma-Ancestral Feb 4, 2026
fc8dfd7
Small change in post post parse (events really doesn't need anything …
Zoma-Ancestral Feb 4, 2026
761a1ff
Optimized code
Zoma-Ancestral Feb 4, 2026
e51d707
Added construction build speed for each player and total
Zoma-Ancestral Feb 4, 2026
4daed09
Small change to Construct Mastery
Zoma-Ancestral Feb 4, 2026
c732bcc
Updated alchemy prismatic bubble bonus calculation
Zoma-Ancestral Feb 4, 2026
47d518d
Updated where the total build speed is calculated, and display it
Zoma-Ancestral Feb 4, 2026
f1695fc
Created New Models for clickers
Zoma-Ancestral Feb 4, 2026
395a1fe
Created new Repo for Orion and Poppy megreward, used the new model fo…
Zoma-Ancestral Feb 4, 2026
0b3ca2f
Created a Repo for clickers update
Zoma-Ancestral Feb 4, 2026
a4f079e
Created first draft for Poppy and Orion class
Zoma-Ancestral Feb 4, 2026
521e1c7
Splited Clicker Upgrade Repo
Zoma-Ancestral Feb 4, 2026
1f5a414
Small mistake
Zoma-Ancestral Feb 4, 2026
dd3da98
Removed some test logs
Zoma-Ancestral Feb 4, 2026
a9ccc4b
Small changes to gambit to be more accurate
Zoma-Ancestral Feb 4, 2026
be8a975
Updated Orion so it's now a real domain class
Zoma-Ancestral Feb 4, 2026
3e34de8
Orion is now into the parsing
Zoma-Ancestral Feb 4, 2026
ff57682
Correct parsing syntax for Orion
Zoma-Ancestral Feb 4, 2026
e90235a
Small fix on the global bonus calculation
Zoma-Ancestral Feb 4, 2026
3980c22
Updated Poppy so now it's a real domain class
Zoma-Ancestral Feb 5, 2026
2780618
Added Poppy to the parse and post parsing
Zoma-Ancestral Feb 5, 2026
fcc912e
Update worship totems and MSA
Zoma-Ancestral Feb 5, 2026
95d0e1e
Updated Compass to access bonus easily from outside the domain
Zoma-Ancestral Feb 5, 2026
c3470e6
Updated AtomCollider cost and max level calculations
Zoma-Ancestral Feb 5, 2026
69d645b
make code more readable
Sludging Feb 8, 2026
05f3b96
update latest and extract
Sludging Feb 8, 2026
62acead
orion tests
Sludging Feb 8, 2026
aac3ae5
prismatic tests
Sludging Feb 8, 2026
f8fdee5
poppy tests and minor clean-up
Sludging Feb 8, 2026
b01cd6d
atom collider tests
Sludging Feb 8, 2026
0f71fe9
bubba tests
Sludging Feb 8, 2026
a0096a0
worship soul rewards tests
Sludging Feb 8, 2026
537b28d
totalizer tests
Sludging Feb 8, 2026
8580717
player build speed tests
Sludging Feb 10, 2026
be7b64e
minor bug fixes
Sludging Feb 10, 2026
2f7f586
translate comment
Sludging Feb 10, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/account/obols/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import ShadowBox from "../../../components/base/ShadowBox";
import { Player } from "../../../data/domain/player";
import LeftNavButton from "../../../components/base/LeftNavButton";
import ObolsInfo from "../../../components/account/task-board/obolsInfo";
import { ObolsData, ObolType } from "../../../data/domain/obols";
import { ObolsData, ObolType } from "../../../data/domain/world-2/obols";
import TextAndLabel from "../../../components/base/TextAndLabel";
import TipDisplay, { TipDirection } from "../../../components/base/TipDisplay";
import { ItemStat } from "../../../data/domain/items";
Expand Down
2 changes: 1 addition & 1 deletion app/account/slab/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import TipDisplay, { TipDirection } from '../../../components/base/TipDisplay';
import IconImage from '../../../components/base/IconImage';
import { SourcesModel } from '../../../data/domain/model/sourcesModel';
import { customHandCraftedListOfUnobtainableItems, Slab as SlabDomain } from '../../../data/domain/slab';
import { customHandCraftedListOfUnobtainableItems, Slab as SlabDomain } from '../../../data/domain/world-5/slab';
import TextAndLabel, { ComponentAndLabel } from '../../../components/base/TextAndLabel';
import { NoteModel } from '../../../data/domain/model/noteModel';
import ShadowBox from '../../../components/base/ShadowBox';
Expand Down Expand Up @@ -67,7 +67,7 @@
}

return slabInfo.obtainableItems.filter(item => !item.obtained).filter(item => !customHandCraftedListOfUnobtainableItems.includes(item.internalName));
}, [slabInfo, lastUpdated]);

Check warning on line 70 in app/account/slab/content.tsx

View workflow job for this annotation

GitHub Actions / test (20.x)

React Hook useMemo has an unnecessary dependency: 'lastUpdated'. Either exclude it or remove the dependency array

const obtainedItems = useMemo(() => {
if (!slabInfo) {
Expand All @@ -75,7 +75,7 @@
}

return slabInfo.obtainableItems.filter(item => item.obtained);
}, [slabInfo, lastUpdated]);

Check warning on line 78 in app/account/slab/content.tsx

View workflow job for this annotation

GitHub Actions / test (20.x)

React Hook useMemo has an unnecessary dependency: 'lastUpdated'. Either exclude it or remove the dependency array

if (!slabInfo) {
return <Box>Loading</Box>
Expand Down
2 changes: 1 addition & 1 deletion app/account/tome/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
import ShadowBox from '../../../components/base/ShadowBox';
import { useAppDataStore } from '../../../lib/providers/appDataStoreProvider';
import { useShallow } from 'zustand/react/shallow';
import { TomeLine, Tome as TomeDomain, TomeScoreColors } from '../../../data/domain/tome';
import { TomeLine, Tome as TomeDomain, TomeScoreColors } from '../../../data/domain/world-4/tome';
import { CircleInformation } from 'grommet-icons';
import TipDisplay from '../../../components/base/TipDisplay';
import { Player } from '../../../data/domain/player';
Expand Down
27 changes: 14 additions & 13 deletions app/players/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
import { SkillsIndex } from "../../data/domain/SkillsIndex";
import { ClassIndex, ClassTalentMap, GetTalentArray } from '../../data/domain/talents';
import { Capacity, playerInventoryBagMapping } from '../../data/domain/capacity';
import { Alchemy, Bubble, CauldronIndex } from "../../data/domain/alchemy";
import { Alchemy, Bubble, CauldronIndex } from "../../data/domain/world-2/alchemy/alchemy";
import { Stamp } from '../../data/domain/world-1/stamps';
import { Shrine } from '../../data/domain/shrines';
import { PlayerStatues } from '../../data/domain/statues';
import { Shrine } from '../../data/domain/world-3/construction/shrines';
import { PlayerStatues } from '../../data/domain/world-1/statues';

import { getCoinsArray, nFormatter } from '../../data/utility';
import CoinsDisplay from '../../components/coinsDisplay';
Expand All @@ -34,37 +34,37 @@
import { Alert, CircleInformation, Next } from 'grommet-icons';
import { Item, ItemStat, Food, DropSource } from '../../data/domain/items';
import { Storage } from '../../data/domain/storage';
import { Prayer } from '../../data/domain/prayers';
import { Prayer } from '../../data/domain/world-3/prayers';
import { TimeDown, TimeUp } from '../../components/base/TimeDisplay';
import { Worship } from '../../data/domain/worship';
import { Worship } from '../../data/domain/world-3/worship';
import ObolsInfo from '../../components/account/task-board/obolsInfo';
import TextAndLabel, { ComponentAndLabel } from '../../components/base/TextAndLabel';
import { Skilling } from '../../data/domain/skilling';
import { Family } from '../../data/domain/family';
import { Achievement, AchievementConst } from '../../data/domain/achievements';
import { Achievement } from '../../data/domain/achievements';
import { MapInfo } from '../../data/domain/maps';
import { EnemyInfo } from '../../data/domain/enemies';
import Stat from '../../components/base/Stat';
import IconImage from '../../components/base/IconImage';
import { SourcesModel } from '../../data/domain/model/sourcesModel';
import { Sigils } from '../../data/domain/sigils';
import { Chip } from '../../data/domain/lab';
import { AnvilWrapper } from '../../data/domain/anvil';
import { Sigils } from '../../data/domain/world-2/alchemy/sigils';
import { Chip } from '../../data/domain/world-4/lab';
import { AnvilWrapper } from '../../data/domain/world-1/anvil';
import { Alerts, CardSetAlert } from '../../data/domain/alerts';
import { POExtra } from '../../data/domain/postoffice';
import { Cooking } from '../../data/domain/cooking';
import { BeanstalkingBonusType, Sneaking } from '../../data/domain/world-6/sneaking';
import { POExtra } from '../../data/domain/world-2/postoffice';
import { Cooking } from '../../data/domain/world-4/cooking';
import { Sneaking } from '../../data/domain/world-6/sneaking';

import { useShallow } from 'zustand/react/shallow'
import { useAppDataStore } from '../../lib/providers/appDataStoreProvider';
import { Bribe } from '../../data/domain/bribes';
import { Bribe } from '../../data/domain/world-1/bribes';
import { Card } from '../../data/domain/cards';
import { EquipmentSets } from '../../data/domain/misc/equipmentSets';
import { LegendTalents } from '../../data/domain/world-7/legendTalents';
import { Companion } from '../../data/domain/companions';
import { Votes } from '../../data/domain/world-2/votes';

function ItemSourcesDisplay({ sources, dropInfo }: { sources: SourcesModel, dropInfo: DropSource[] }) {

Check warning on line 67 in app/players/content.tsx

View workflow job for this annotation

GitHub Actions / test (20.x)

'dropInfo' is defined but never used. Allowed unused args must match /^_/u

const possibleSources = useMemo(() => {
if (!sources) {
Expand Down Expand Up @@ -246,7 +246,7 @@
return (new Date().getTime() - lastUpdated.getTime()) / 1000;
}
return 0;
}, [theData, lastUpdated]);

Check warning on line 249 in app/players/content.tsx

View workflow job for this annotation

GitHub Actions / test (20.x)

React Hook useMemo has an unnecessary dependency: 'theData'. Either exclude it or remove the dependency array

return (
<Box pad="medium">
Expand Down Expand Up @@ -316,6 +316,7 @@
<Stat stat={player.crystalChance} />
<Stat stat={player.doubleClaimChance} />
<Stat stat={player.monsterCash} />
<Stat stat={player.buildSpeed} />
{playerWorshipInfo.maxCharge > 0 &&
<Box>
<Text size="small">Charge Rate = {Math.round(playerWorshipInfo.chargeRate * 24)}% / day</Text>
Expand Down
2 changes: 1 addition & 1 deletion app/world-1/anvil/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
Text,
} from 'grommet'
import { useMemo, useState } from 'react';
import { Anvil as AnvilModel, AnvilProduct, AnvilWrapper } from '../../../data/domain/anvil';
import { Anvil as AnvilModel, AnvilProduct, AnvilWrapper } from '../../../data/domain/world-1/anvil';
import { Player } from '../../../data/domain/player';
import IconImage from '../../../components/base/IconImage';
import ShadowBox from '../../../components/base/ShadowBox';
Expand Down
2 changes: 1 addition & 1 deletion app/world-1/forge/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
import { useEffect, useState, useMemo } from 'react';

import ShadowBox from '../../../components/base/ShadowBox';
import { Forge as ForgeDomain } from '../../../data/domain/forge';
import { Forge as ForgeDomain } from '../../../data/domain/world-1/forge';
import TextAndLabel, { ComponentAndLabel } from '../../../components/base/TextAndLabel';
import CoinsDisplay from '../../../components/coinsDisplay';
import { getCoinsArray, nFormatter } from '../../../data/utility';
Expand Down
2 changes: 1 addition & 1 deletion app/world-1/stamps/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import ItemSourcesDisplay from "../../../components/base/ItemSourceDisplay";
import TipDisplay, { TipDirection } from "../../../components/base/TipDisplay";
import IconImage from "../../../components/base/IconImage";
import TextAndLabel, { ComponentAndLabel } from "../../../components/base/TextAndLabel";
import { AtomCollider } from "../../../data/domain/atomCollider";
import { AtomCollider } from "../../../data/domain/world-3/construction/atomCollider";
import { Storage } from "../../../data/domain/storage";
import { CircleInformation, List, Grid as GridIcon } from "grommet-icons";
import { normalizeColor } from "grommet/utils";
Expand Down
6 changes: 3 additions & 3 deletions app/world-2/alchemy/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
} from "grommet"
import styled from 'styled-components'

import { Alchemy as AlchemyData, Cauldron, Bubble, CauldronBoostIndex, Vial } from '../../../data/domain/alchemy';
import { Alchemy as AlchemyData, Cauldron, Bubble, CauldronBoostIndex, Vial } from '../../../data/domain/world-2/alchemy/alchemy';
import { Achievement, AchievementConst } from '../../../data/domain/achievements'
import { useEffect, useState, useContext } from 'react';
import { nFormatter, round } from '../../../data/utility'
Expand All @@ -22,10 +22,10 @@ import { Item } from "../../../data/domain/items";
import TipDisplay, { TipDirection } from "../../../components/base/TipDisplay";
import { Ascending } from "grommet-icons";
import IconImage from "../../../components/base/IconImage";
import { Sigils } from "../../../data/domain/sigils";
import { Sigils } from "../../../data/domain/world-2/alchemy/sigils";
import TextAndLabel, { ComponentAndLabel } from "../../../components/base/TextAndLabel";
import { TimeDown } from "../../../components/base/TimeDisplay";
import { AtomCollider } from "../../../data/domain/atomCollider";
import { AtomCollider } from "../../../data/domain/world-3/construction/atomCollider";
import P2WDisplay from "../../../components/world-2/alchemy/p2w";
import { useAppDataStore } from "../../../lib/providers/appDataStoreProvider";
import { useShallow } from "zustand/react/shallow";
Expand Down
2 changes: 1 addition & 1 deletion app/world-2/arcade/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
import { useEffect, useState, useMemo } from 'react';
import ShadowBox from '../../../components/base/ShadowBox';
import TextAndLabel, { ComponentAndLabel } from '../../../components/base/TextAndLabel';
import { Arcade as ArcadeData } from '../../../data/domain/arcade';
import { Arcade as ArcadeData } from '../../../data/domain/world-2/arcade';
import { Stamp } from '../../../data/domain/world-1/stamps';
import { StaticTime, TimeDisplaySize } from '../../../components/base/TimeDisplay';
import IconImage from '../../../components/base/IconImage';
Expand Down
12 changes: 6 additions & 6 deletions app/world-3/construction/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,27 @@ import React, { useEffect, useContext, useState, useMemo } from 'react';

import ShadowBox from '../../../components/base/ShadowBox';
import TabButton from '../../../components/base/TabButton';
import { Refinery } from '../../../data/domain/refinery';
import { Refinery } from '../../../data/domain/world-3/construction/refinery';
import { Item } from '../../../data/domain/items';
import { Storage } from '../../../data/domain/storage';
import { lavaLog, nFormatter, range, toTime } from '../../../data/utility';
import { StaticTime, TimeDisplaySize, TimeDown } from '../../../components/base/TimeDisplay';
import { INDEX_DAYS_SINCE_SAMPLE_ARTIFACT, Printer, Sample } from '../../../data/domain/printer';
import { INDEX_DAYS_SINCE_SAMPLE_ARTIFACT, Printer, Sample } from '../../../data/domain/world-3/construction/printer';
import { Player } from '../../../data/domain/player';
import { CircleInformation, Star, StatusWarning } from 'grommet-icons';
import TipDisplay, { TipDirection } from '../../../components/base/TipDisplay';
import { Deathnote } from '../../../data/domain/deathnote';
import { Deathnote } from '../../../data/domain/world-3/construction/deathnote';
import TextAndLabel, { ComponentAndLabel } from '../../../components/base/TextAndLabel';
import { ClassIndex, Talent } from '../../../data/domain/talents';
import { TaskBoard } from '../../../data/domain/tasks';
import { Shrine } from '../../../data/domain/shrines';
import { Shrine } from '../../../data/domain/world-3/construction/shrines';
import { MapInfo } from '../../../data/domain/maps';
import IconImage from '../../../components/base/IconImage';
import { BuildingsDisplay } from '../../../components/world-3/construction/buildings';
import { SaltLickDisplay } from '../../../components/world-3/construction/saltLick';
import { ArtifactStatus } from '../../../data/domain/sailing/artifacts';
import { ArtifactStatus } from '../../../data/domain/world-5/sailing/artifacts';
import { AtomColliderDisplay } from '../../../components/world-3/construction/atomCollider';
import { Sailing } from '../../../data/domain/sailing';
import { Sailing } from '../../../data/domain/world-5/sailing/sailing';
import { useShallow } from 'zustand/react/shallow';
import { useAppDataStore } from '../../../lib/providers/appDataStoreProvider';

Expand Down
2 changes: 1 addition & 1 deletion app/world-3/equinox/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
} from 'grommet'
import ShadowBox from '../../../components/base/ShadowBox';

import { Equinox as EquinoxDomain, isFoodLust } from '../../../data/domain/equinox';
import { Equinox as EquinoxDomain, isFoodLust } from '../../../data/domain/world-3/equinox';

import { TimeDown } from "../../../components/base/TimeDisplay";
import TextAndLabel, { ComponentAndLabel } from '../../../components/base/TextAndLabel';
Expand Down
2 changes: 1 addition & 1 deletion app/world-3/trapping/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
} from 'grommet'
import { useContext } from 'react';

import { Trap, TrapSet } from '../../../data/domain/traps';
import { Trap, TrapSet } from '../../../data/domain/world-3/traps';
import ShadowBox from '../../../components/base/ShadowBox';
import { Player } from '../../../data/domain/player';
import { SkillsIndex } from "../../../data/domain/SkillsIndex";
Expand Down
2 changes: 1 addition & 1 deletion app/world-4/breeding/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { ArenaBonusDisplay } from '../../../components/world-4/breeding/arena';
import { PetsDisplay } from '../../../components/world-4/breeding/pets';
import TextAndLabel, { ComponentAndLabel } from '../../../components/base/TextAndLabel';
import { StaticTime, TimeDown } from '../../../components/base/TimeDisplay';
import { Breeding as BreedingDomain } from '../../../data/domain/breeding';
import { Breeding as BreedingDomain } from '../../../data/domain/world-4/breeding';
import { nFormatter } from '../../../data/utility';
import { useAppDataStore } from '../../../lib/providers/appDataStoreProvider';
import { useShallow } from 'zustand/react/shallow';
Expand Down
6 changes: 3 additions & 3 deletions app/world-4/cooking/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ import ShadowBox from '../../../components/base/ShadowBox';
import { TimeDown } from '../../../components/base/TimeDisplay';
import TipDisplay, { TipDirection } from '../../../components/base/TipDisplay';
import CoinsDisplay from '../../../components/coinsDisplay';
import { territoryNiceNames } from '../../../data/domain/breeding';
import { Cooking as CookingDomain, Kitchen, KitchenStatus, Meal, UpgradeType } from '../../../data/domain/cooking';
import { territoryNiceNames } from '../../../data/domain/world-4/breeding';
import { Cooking as CookingDomain, Kitchen, KitchenStatus, Meal, UpgradeType } from '../../../data/domain/world-4/cooking';
import { getCoinsArray, nFormatter, notateNumber, toTime } from '../../../data/utility';
import TextAndLabel, { ComponentAndLabel } from '../../../components/base/TextAndLabel';
import { AtomCollider } from '../../../data/domain/atomCollider';
import { AtomCollider } from '../../../data/domain/world-3/construction/atomCollider';
import { Ascending, CircleInformation } from 'grommet-icons';
import { useAppDataStore } from '../../../lib/providers/appDataStoreProvider';
import { useShallow } from 'zustand/react/shallow';
Expand Down
4 changes: 2 additions & 2 deletions app/world-4/lab/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ import IconImage from '../../../components/base/IconImage';
import ShadowBox from '../../../components/base/ShadowBox';
import TabButton from '../../../components/base/TabButton';
import TipDisplay, { TipDirection } from '../../../components/base/TipDisplay';
import { Chip, Lab as LabDomain } from '../../../data/domain/lab';
import { Chip, Lab as LabDomain } from '../../../data/domain/world-4/lab';
import { Player } from '../../../data/domain/player';
import { SkillsIndex } from "../../../data/domain/SkillsIndex";
import { CharacterBox } from '../../../components/base/CharacterBox';
import { ComponentAndLabel } from '../../../components/base/TextAndLabel';
import { Rift, SkillMastery } from '../../../data/domain/rift';
import { Rift, SkillMastery } from '../../../data/domain/world-4/rift';
import { useAppDataStore } from '../../../lib/providers/appDataStoreProvider';
import { useShallow } from 'zustand/react/shallow';

Expand Down
4 changes: 2 additions & 2 deletions app/world-4/rift/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ import IconImage from '../../../components/base/IconImage';
import ShadowBox from '../../../components/base/ShadowBox';
import TabButton from '../../../components/base/TabButton';
import TextAndLabel, { ComponentAndLabel } from '../../../components/base/TextAndLabel';
import { ConstructionMastery, KillroyPrime, Rift, RiftBonus, SkillMastery } from '../../../data/domain/rift';
import { ConstructionMastery, KillroyPrime, Rift, RiftBonus, SkillMastery } from '../../../data/domain/world-4/rift';
import { SkillsIndex } from '../../../data/domain/SkillsIndex';
import { Skilling } from '../../../data/domain/skilling';
import { ImageData } from '../../../data/domain/imageData';
import { Player } from '../../../data/domain/player';
import TipDisplay, { TipDirection } from '../../../components/base/TipDisplay';
import { Construction } from '../../../data/domain/construction';
import { Construction } from '../../../data/domain/world-3/construction/construction';
import { nFormatter } from '../../../data/utility';
import { useAppDataStore } from '../../../lib/providers/appDataStoreProvider';
import { useShallow } from 'zustand/react/shallow';
Expand Down
2 changes: 1 addition & 1 deletion app/world-5/divinity/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import IconImage from '../../../components/base/IconImage';
import ShadowBox from '../../../components/base/ShadowBox';
import TabButton from '../../../components/base/TabButton';
import TextAndLabel, { ComponentAndLabel } from '../../../components/base/TextAndLabel';
import { Divinity as DivinityDomain } from '../../../data/domain/divinity';
import { Divinity as DivinityDomain } from '../../../data/domain/world-5/divinity';
import { Player } from '../../../data/domain/player';
import { Skilling } from '../../../data/domain/skilling';
import { SkillsIndex } from '../../../data/domain/SkillsIndex';
Expand Down
2 changes: 1 addition & 1 deletion app/world-5/gaming/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { useEffect, useMemo, useState } from 'react';
import ShadowBox from '../../../components/base/ShadowBox';
import { ComponentAndLabel } from '../../../components/base/TextAndLabel';
import { TimeDown } from '../../../components/base/TimeDisplay';
import { Gaming as GamingDomain } from '../../../data/domain/gaming';
import { Gaming as GamingDomain } from '../../../data/domain/world-5/gaming';
import { nFormatter } from '../../../data/utility';
import { useAppDataStore } from '../../../lib/providers/appDataStoreProvider';
import { useShallow } from 'zustand/react/shallow';
Expand Down
4 changes: 2 additions & 2 deletions app/world-5/sailing/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import TabButton from '../../../components/base/TabButton';
import TextAndLabel, { ComponentAndLabel } from '../../../components/base/TextAndLabel';
import { TimeDisplaySize, TimeDown } from '../../../components/base/TimeDisplay';
import TipDisplay, { TipDirection } from '../../../components/base/TipDisplay';
import { BoatUpgradeType, CaptainTrait, IslandStatus, Sailing as SailingDomain } from '../../../data/domain/sailing';
import { ArtifactStatus } from '../../../data/domain/sailing/artifacts';
import { BoatUpgradeType, CaptainTrait, IslandStatus, Sailing as SailingDomain } from '../../../data/domain/world-5/sailing/sailing';
import { ArtifactStatus } from '../../../data/domain/world-5/sailing/artifacts';
import { nFormatter, range } from '../../../data/utility';
import styled from 'styled-components';
import { useAppDataStore } from '../../../lib/providers/appDataStoreProvider';
Expand Down
2 changes: 1 addition & 1 deletion components/account/task-board/obolsInfo.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Box, Text } from "grommet";
import { useEffect, useMemo, useState } from "react";
import { ItemStat } from "../../../data/domain/items";
import { ObolsData, ObolType } from "../../../data/domain/obols";
import { ObolsData, ObolType } from "../../../data/domain/world-2/obols";
import IconImage from "../../base/IconImage";
import TextAndLabel, { ComponentAndLabel } from "../../base/TextAndLabel";
import TipDisplay, { TipDirection } from "../../base/TipDisplay";
Expand Down
2 changes: 1 addition & 1 deletion components/dashboard/dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import TipDisplay from "../base/TipDisplay";
import { Player } from "../../data/domain/player";
import CoinsDisplay from "../coinsDisplay";
import { TimeDown } from "../base/TimeDisplay";
import { Arcade } from "../../data/domain/arcade";
import { Arcade } from "../../data/domain/world-2/arcade";
import { AFKTypeEnum } from "../../data/domain/enum/aFKTypeEnum";
import { useAppDataStore } from "../../lib/providers/appDataStoreProvider";
import { DataStatus } from "../../lib/stores/appDataStore";
Expand Down
2 changes: 1 addition & 1 deletion components/world-1/stampTableView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import ShadowBox from "../base/ShadowBox";
import CoinsDisplay from "../coinsDisplay";
import { Item } from "../../data/domain/items";
import { Storage } from "../../data/domain/storage";
import { AtomCollider } from "../../data/domain/atomCollider";
import { AtomCollider } from "../../data/domain/world-3/construction/atomCollider";

enum StampStatus {
NoCalculator = 'Unknown',
Expand Down
Loading
Loading