From 86ca7f97b00c194de29910385e5ba4db8bef9026 Mon Sep 17 00:00:00 2001 From: str1k3r <115313679+S1l3ntStr1ke87@users.noreply.github.com> Date: Sat, 11 Jul 2026 22:03:25 -0400 Subject: [PATCH] feat: update readme & update ingame lceonline server entry --- README.md | 4 ++-- src-tauri/src/commands/game.rs | 6 +++--- src/components/modals/ChooseInstanceModal.tsx | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b29d248..f71a633 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ LCE Emerald Launcher is the easiest way to play Minecraft Legacy Console Edition | **Controller Support** | Full gamepad navigation support (keyboard support included) | | **Discord Rich Presence** | Show your current activity and game status on Discord | | **Workshop** | Community content like DLCs, Textures, Skins and more | -| **Free Multiplayer** | Powered by LCELive, Emerald provides a free multiplayer service so you can play with anyone without port forwarding! | +| **Free Multiplayer** | Powered by LCEOnline, Emerald provides a free multiplayer service so you can play with anyone without port forwarding! | --- @@ -183,7 +183,7 @@ sudo apt install --reinstall libwebkit2gtk-4.1-0 - **The Emerald Team** - Technical development and maintenance - **4J Studios & Mojang** - Original creators of Legacy Console Edition - **The LCE Community** - Research and foundations for LCE on PC -- **Veroxsity (Racoon)** - Original creator of LCELive +- **Str1k3r** - Original creator of LCEOnline --- diff --git a/src-tauri/src/commands/game.rs b/src-tauri/src/commands/game.rs index bc4384a..15627da 100644 --- a/src-tauri/src/commands/game.rs +++ b/src-tauri/src/commands/game.rs @@ -27,9 +27,9 @@ pub async fn launch_game( perform_instance_sync(&app, &instance_id).await?; let working_dir = util::get_instance_working_dir(&app, &instance_id); let config_val = config::load_config_raw(app.clone()); - let lce_live = McServer { name: "LCELive Game".into(), ip: "127.0.0.1".into(), port: 61000 }; - if !servers.iter().any(|s| s.ip == lce_live.ip && s.port == lce_live.port) { - servers.push(lce_live); + let lce_online = McServer { name: "LCEOnline Game".into(), ip: "127.0.0.1".into(), port: 61000 }; + if !servers.iter().any(|s| s.ip == lce_online.ip && s.port == lce_online.port) { + servers.push(lce_online); } if let Some(ref saved) = config_val.saved_servers { for s in saved { diff --git a/src/components/modals/ChooseInstanceModal.tsx b/src/components/modals/ChooseInstanceModal.tsx index 39a3e0d..6c65134 100644 --- a/src/components/modals/ChooseInstanceModal.tsx +++ b/src/components/modals/ChooseInstanceModal.tsx @@ -75,7 +75,7 @@ export default function ChooseInstanceModal({ selectedInstance, [ { - name: invite.hostName || "LCE Online Game", + name: invite.hostName || "LCEOnline Game", ip: "127.0.0.1", port: 61000, }, @@ -87,7 +87,7 @@ export default function ChooseInstanceModal({ await TauriService.stopAllProxies(); await TauriService.launchGame(selectedInstance, [ { - name: invite.hostName || "LCE Online Game", + name: invite.hostName || "LCEOnline Game", ip: invite.hostIp, port: invite.hostPort, },