diff --git a/src/components/views/VersionsView.tsx b/src/components/views/VersionsView.tsx
index 2ba0b5b..460e73c 100644
--- a/src/components/views/VersionsView.tsx
+++ b/src/components/views/VersionsView.tsx
@@ -557,14 +557,14 @@ const VersionsView = memo(function VersionsView() {

) : (
)
@@ -578,8 +578,7 @@ const VersionsView = memo(function VersionsView() {
>
{edition.name}
diff --git a/src/hooks/useGameManager.ts b/src/hooks/useGameManager.ts
index 11a823d..d34cb8f 100644
--- a/src/hooks/useGameManager.ts
+++ b/src/hooks/useGameManager.ts
@@ -47,15 +47,16 @@ export const BASE_EDITIONS = [
supportsSlimSkins: false,
panorama: "vanilla_tu19",
logo: "/images/revelations.png",
+ transparentLogo: true,
},
{
- id: "legacyorbis",
- name: "LegacyOrbis",
+ id: "projectlce",
+ name: "ProjectLCE",
desc: "A LCE Project which aims to bring the feel and functionality from Minecraft: Playstation®4 Edition directly natively to your PC!",
- url: "https://git.neolegacy.dev/LegacyOrbis/Client/releases/download/latest/MinecraftPS4Edition.zip", // LO-Byte: No CDN right now, direct download from the git
+ url: "https://git.neolegacy.dev/ProjectLCE/Client/releases/download/latest/MinecraftPS4Edition.zip", // LO-Byte: No CDN right now, direct download from the git
titleImage: "/images/MinecraftPS4Edition.png",
supportsSlimSkins: true, // LO-Byte: Slim skins are supported, might have to change a few things in the code to match neoLegacy's implementation
- logo: "/images/LegacyOrbis.png",
+ logo: "/images/projectlce.png",
panorama: "legacyorbis",
// LO-Byte: Store is built differently to what emerald expects, branch for emerald will be added soon
//officialDLC: "main:https://git.neolegacy.dev/LegacyOrbis/Store",
@@ -112,6 +113,7 @@ export const BASE_EDITIONS = [
supportsSlimSkins: false,
logo: "/images/moonEdition.png",
panorama: "moonedition",
+ transparentLogo: true,
},
{
//neo: disabled.
@@ -124,6 +126,7 @@ export const BASE_EDITIONS = [
logo: "/images/lce_online.png",
panorama: "vanilla_tu19",
lceOnline: true,
+ transparentLogo: true,
},
];
diff --git a/src/types/edition.ts b/src/types/edition.ts
index 52ada11..a025caf 100644
--- a/src/types/edition.ts
+++ b/src/types/edition.ts
@@ -16,6 +16,7 @@ export interface Edition {
officialDLC?: string;
lceOnline?: boolean;
hideOnAndroid?: boolean;
+ transparentLogo?: boolean;
}
export interface CustomEditionInput {