From fcd0787454c51109298e4a71460ce976fe88673c Mon Sep 17 00:00:00 2001 From: Eddie Annor <36930632+Homeannor@users.noreply.github.com> Date: Tue, 13 Aug 2024 14:42:06 +0100 Subject: [PATCH] Fixed Stik VS Screen hopefully --- assets/{communityvs => battlebgs}/Stik.png | Bin index.ts | 7 ++----- types.ts | 4 ---- 3 files changed, 2 insertions(+), 9 deletions(-) rename assets/{communityvs => battlebgs}/Stik.png (100%) diff --git a/assets/communityvs/Stik.png b/assets/battlebgs/Stik.png similarity index 100% rename from assets/communityvs/Stik.png rename to assets/battlebgs/Stik.png diff --git a/index.ts b/index.ts index f485c08..5be9522 100644 --- a/index.ts +++ b/index.ts @@ -143,11 +143,8 @@ const opponents = { [Opponents.MasterOG]: { text: "Master OG", colour: ["#FF0000", "#FFFFFF"] - } -} - -const communityopponents = { - [CommunityOpponents.Stik]: { + }, + [Opponents.Stik]: { text: "Stik", colour: ["#FF0000", "#000000"] } diff --git a/types.ts b/types.ts index 33f4465..37ecd92 100644 --- a/types.ts +++ b/types.ts @@ -127,10 +127,6 @@ export enum Opponents { Dicey2024 = "Dicey2024", CakeDay = "CakeDay", MasterOG = "MasterOG", -} - -export enum CommunityOpponents { - None = "None", Stik = "Stik", }