mirror of
https://github.com/LCE-Hub/LCE-Emerald-Launcher.git
synced 2026-07-19 00:37:07 +00:00
feat: update readme & update ingame lceonline server entry
This commit is contained in:
parent
70a2223bc4
commit
86ca7f97b0
|
|
@ -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
|
||||
|
||||
---
|
||||
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue