Skip to content

Commit 3a11a49

Browse files
committed
rename uptime to kindred
1 parent e201ee9 commit 3a11a49

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

wtfdig/src/routes/+layout.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</header>
3434
<article>
3535
<div>
36-
<p>4/24/2025: some minor updates for m6s, clarify m7s p3 dd, add m7s stoneringers 2</p>
36+
<p>4/24/2025: some minor updates for m6s, clarify m7s p3 dd, add m7s stoneringers 2, rename uptime m7s p1 to kindred</p>
3737
<p>4/22/2025: fix m8s quad moon, add fixed seeds, update m6s latte 8-0-0 towers, split out original and caster se twofold</p>
3838
<p>4/17/2025: update m8s toxic p2 twofold</p>
3939
<p>4/16/2025: cheatsheet mode for 7 + 8</p>

wtfdig/src/routes/72/m7s/+page.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
p2: 'toxic',
157157
p3: 'toxic',
158158
},
159-
'uptime': {
159+
'kindred': {
160160
p2: 'alpha',
161161
p3: 'toxic',
162162
},
@@ -175,7 +175,7 @@
175175
if (!stratName || !role || !party) return '';
176176
const stratNames: Record<string, string> = {
177177
'toxic': 'Toxic Friends',
178-
'uptime': 'Uptime/Kindred'
178+
'kindred': 'Kindred'
179179
}
180180
const jpRoleAbbrev: Record<string, string> = {
181181
'MT': 'MT',
@@ -273,8 +273,8 @@
273273
<div>
274274
<div class="text-xl mb-2">Which P1 strat are you using?</div>
275275
<Segment classes="flex-wrap" name="stratName" value={stratName} onValueChange={onSelectStrat}>
276-
<Segment.Item value="toxic">Toxic Friends (PWFg⋯unO2)</Segment.Item>
277-
<Segment.Item value="uptime">Uptime (-OMZ⋯JdIu)</Segment.Item>
276+
<Segment.Item value="toxic">Toxic</Segment.Item>
277+
<Segment.Item value="kindred">Kindred</Segment.Item>
278278
</Segment>
279279
</div>
280280
{#if stratName}

wtfdig/src/routes/72/m7s/+page.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { PageLoad } from "./$types";
22

33
export const load: PageLoad = ({params}) => {
44
return {
5-
strats: [toxicStrat, uptimeStrat],
5+
strats: [toxicStrat, kindredStrat],
66
timeline: timeline,
77
}
88
}
@@ -5103,8 +5103,8 @@ const toxicStrat: Strat = {
51035103
]
51045104
}
51055105

5106-
const uptimeStrat: Strat = {
5107-
stratName: 'uptime',
5106+
const kindredStrat: Strat = {
5107+
stratName: 'kindred',
51085108
description: 'Source: UPTIME SEEDING Raidplan and Kindred VODs',
51095109
notes: '',
51105110
stratUrl: 'https://raidplan.io/plan/-OMZSfpCVSPeJdIu',

0 commit comments

Comments
 (0)