Skip to content

Commit

Permalink
feat: add halloween logo, footer, background and events (#708)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobk999 authored Oct 21, 2024
1 parent 8202dda commit 3eff3ad
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
deploy:
name: Deploy
runs-on: core
runs-on: self-hosted
environment: production
steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion apps/discord-bot/src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export const Footer = ({ logo, user, border }: FooterProps) => {

case UserLogo.DEFAULT:
text =
"§#d0efffs§#a3d9fct§#75c2f9a§#48acf6t§#289af0s§#2391e6i§#1f87dbf§#1a7ed1y§#1777c8.§#1572c0n§#136cb9e§#1167b1t";
"§#ffa561s§#ffa15bt§#ff9e56a§#ff9a50t§#fe9446s§#fb8934i§#f97d22f§#f67210y§#ee6b09.§#e46507n§#da6006e§#d05b04t";
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion assets/private
2 changes: 1 addition & 1 deletion assets/public
5 changes: 5 additions & 0 deletions packages/schemas/src/player/gamemodes/general/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export type EventTypes = Exclude<keyof Events, "silver">;
export type EventPeriods = "summer" | "halloween" | "christmas" | "easter";

export const EVENT_TYPES: EventTypes[] = [
"halloween2024",
"summer2024",
"easter2024",
"christmas2023",
Expand Down Expand Up @@ -76,6 +77,9 @@ export class Events {
@Field({ leaderboard: { name: "Summer 2024" } })
public summer2024: Event;

@Field({ leaderboard: { name: "Halloween 2024" } })
public halloween2024: Event;

@Field()
public silver: number;

Expand All @@ -89,6 +93,7 @@ export class Events {
this.christmas2023 = new Event(10_000, data.christmas?.["2023"]);
this.easter2024 = new Event(10_000, data.easter?.["2024"]);
this.summer2024 = new Event(25_000, data.summer?.["2024"]);
this.halloween2024 = new Event(10_000, data.halloween?.["2024"]);

this.silver = data.silver;
}
Expand Down
8 changes: 3 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3eff3ad

Please sign in to comment.