chore: correct breaks in Thermia Fractures cycle
All checks were successful
Build / build (pull_request) Successful in 54s
All checks were successful
Build / build (pull_request) Successful in 54s
This commit is contained in:
parent
a2171c80a5
commit
b75c00e428
@ -2630,10 +2630,15 @@ export const getWorldState = (buildLabel?: string): IWorldState => {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const thermiaFracturesCycleDay = day % 32;
|
// Thermia Fractures activates for 14 days, with alternating 4 and 3-day breaks
|
||||||
const isThermiaFracturesActive = thermiaFracturesCycleDay < 14;
|
const thermiaFracturesCycleDay = day % 35;
|
||||||
|
const isThermiaFracturesActive =
|
||||||
|
thermiaFracturesCycleDay < 14 || (thermiaFracturesCycleDay >= 18 && thermiaFracturesCycleDay < 32);
|
||||||
|
const activeThermiaFracturesCycleDay =
|
||||||
|
thermiaFracturesCycleDay - (thermiaFracturesCycleDay < 14 ? 0 : thermiaFracturesCycleDay < 18 ? 14 : 32);
|
||||||
|
|
||||||
if (config.worldState?.thermiaFracturesOverride ?? isThermiaFracturesActive) {
|
if (config.worldState?.thermiaFracturesOverride ?? isThermiaFracturesActive) {
|
||||||
const activeStartDay = day - thermiaFracturesCycleDay;
|
const activeStartDay = day - activeThermiaFracturesCycleDay;
|
||||||
|
|
||||||
const count = config.worldState?.thermiaFracturesProgressOverride ?? 0;
|
const count = config.worldState?.thermiaFracturesProgressOverride ?? 0;
|
||||||
const activation = config.worldState?.thermiaFracturesOverride ? 1740416400000 : getSortieTime(activeStartDay);
|
const activation = config.worldState?.thermiaFracturesOverride ? 1740416400000 : getSortieTime(activeStartDay);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user