Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Statsify/statsify
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.14.24
Choose a base ref
...
head repository: Statsify/statsify
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on May 31, 2025

  1. Copy the full SHA
    a0b6de7 View commit details

Commits on Jul 10, 2025

  1. Copy the full SHA
    e6ec1c7 View commit details
5 changes: 5 additions & 0 deletions packages/schemas/src/player/gamemodes/general/events.ts
Original file line number Diff line number Diff line change
@@ -37,6 +37,7 @@ export type EventType = { period: EventPeriod; year: number; key: Exclude<keyof
export type EventPeriod = "summer" | "halloween" | "christmas" | "easter";

export const EVENT_TYPES: EventType[] = [
{ period: "summer", year: 2025, key: "summer2025" },
{ period: "easter", year: 2025, key: "easter2025" },
{ period: "christmas", year: 2024, key: "christmas2024" },
{ period: "halloween", year: 2024, key: "halloween2024" },
@@ -88,6 +89,9 @@ export class Events {
@Field({ leaderboard: { name: "Easter 2025" } })
public easter2025: Event;

@Field({ leaderboard: { name: "Summer 2025" } })
public summer2025: Event;

@Field()
public silver: number;

@@ -104,6 +108,7 @@ export class Events {
this.halloween2024 = new Event(10_000, data.halloween?.["2024"]);
this.christmas2024 = new Event(10_000, data.christmas?.["2024"]);
this.easter2025 = new Event(10_000, data.easter?.["2025"]);
this.summer2025 = new Event(25_000, data.summer?.["2025"]);

this.silver = data.silver;
}
2 changes: 1 addition & 1 deletion packages/schemas/src/player/gamemodes/skywars/index.ts
Original file line number Diff line number Diff line change
@@ -133,7 +133,7 @@ export class SkyWars {
this.levelFormatted = getFormattedLevel(
this.level,
data.active_scheme,
data.active_emblem,
data.active_emblem?.replace("_icon", ""),
isBold,
isUnderline,
isStrikethrough
2 changes: 1 addition & 1 deletion packages/schemas/src/player/gamemodes/skywars/util.ts
Original file line number Diff line number Diff line change
@@ -79,7 +79,7 @@ const EMBLEM_MAP = {
rich: "$",
podium: "π",
fallen_crest: "☬",
null_icon: "∅",
null: "∅",
sigma: "Σ",
delta: "δ",
florin: "ƒ",