This commit is contained in:
Kalle
2023-05-31 22:02:07 +03:00
parent 6903e62b59
commit e32d1feb19
4 changed files with 4 additions and 2 deletions

View File

@@ -10,6 +10,7 @@ const AnalyzeBuild = suite("Analyze build");
const weaponsWithoutDmg: MainWeaponId[] = [
1000, 1010, 1020, 1030, 1100, 1110, 7010, 7020, 8000, 8010,
/* chill season, */ 1001, 1040, 1101, /* fresh season */ 1011,
/* sizzle season */ 1041, 1120,
];
AnalyzeBuild("Every main weapon has damage", () => {
const weaponsWithoutDamage: MainWeaponId[] = [];

View File

@@ -24,6 +24,8 @@ export const objectDamageJsonKeyPriority: Record<
keyof typeof objectDamages,
Array<DamageType> | null
> = {
// added in chill season 2023
Maneuver_SideStep_BombCore: null,
// added in fresh season 2022
BlowerExhale: null,
Castle: null,

View File

@@ -27,7 +27,6 @@ import { checkOut } from "../queries/checkOut.server";
import hasTournamentStarted from "../queries/hasTournamentStarted.server";
import type { TournamentLoaderData } from "./to.$id";
import { joinTeam, leaveTeam } from "../queries/joinLeaveTeam.server";
import { TOURNAMENT } from "../tournament-constants";
import { deleteTeam } from "../queries/deleteTeam.server";
import { useUser } from "~/modules/auth";
import {

View File

@@ -8,7 +8,7 @@ import type { MapPoolObject } from "./types";
const Serializer = suite("Map pool serializer");
const testSerializedPool = "tw:19980;sz:1d0a0;tc:164c0;rm:15e00;cb:1ce00";
const testSerializedPool = "tw:66600;sz:74280;tc:59300;rm:57800;cb:73800";
Serializer("Unserializes and then serializes to same result", () => {
const mapPool = serializedStringToMapPool(testSerializedPool);