Commit graph

757 commits

Author SHA1 Message Date
piebot 8ebcee2d3f fix CI part 3 2026-04-05 19:43:10 +03:00
piebot fe14c551be fix CI part 2 2026-04-05 19:29:02 +03:00
piebot 3fd6d53e76 fix CI 2026-04-05 18:38:23 +03:00
piebot 63017660a8 Merge remote-tracking branch 'origin/main' 2026-04-05 18:37:24 +03:00
neoapps-dev 9910d6f3d2 fix 2026-04-05 16:46:22 +02:00
neoapps-dev 03d66d8f1d fix 2026-04-05 16:42:48 +02:00
SevenToaster509 37052eddb7 Merge branch 'main' of https://codeberg.org/piebot/LegacyEvolved 2026-04-05 15:34:22 +01:00
SevenToaster509 0374dc5a82 FUCK MICROSOFT 2026-04-05 15:33:49 +01:00
neoapps-dev 873c71c645 fix(linux): building with clang
Signed-off-by: neoapps-dev <neoapps-dev@noreply.codeberg.org>
2026-04-05 16:25:32 +02:00
piebot abae14df9c Merge remote-tracking branch 'origin/main' 2026-04-05 17:08:55 +03:00
SevenToaster509 546a279cc9 Book & Quill - Initial Commit
Implement Book & Quill:
- IUIScene_WritingBookMenu and UIScene_BookAndQuillMenu for UI
- Edited UIControl_Label to add direct editing (quite hardcoded to my needs right now)
- Reimplement scrapped custom payload packets for books and signing
- Other misc changes

TODO:
- Coloured and scambled text
- Book copying
- Clean up code
2026-04-05 15:05:03 +01:00
piebot 973c71ffde Update .gitea/ISSUE_TEMPLATE/bug_report.yml 2026-04-05 13:04:15 +02:00
piebot 9f4bbe659c Merge remote-tracking branch 'origin/main' 2026-04-03 20:53:26 +03:00
ItzSonicFaner 8696a07021 Changed from getCustomSkin to getPlayerDefaultSkin 2026-04-03 19:05:23 +02:00
piebot 9595705f22 return image to full size 2026-04-03 17:57:01 +03:00
piebot 2279e710b8 Update README.md 2026-04-03 16:56:46 +02:00
piebot 55865ab581 fix image 2026-04-03 17:55:32 +03:00
piebot 13d1902e31 fix image 2026-04-03 17:54:14 +03:00
piebot 71d004a7de Add "Get it on Emerald Legacy Launcher" Badge 2026-04-03 17:47:06 +03:00
neoapps-dev 7cc9ae857a feat: festive DLCs 2026-04-02 18:50:05 +03:00
Lord_Cambion 128a862b92 Merge branch 'main' of https://codeberg.org/piebot/LegacyEvolved
* 'main' of https://codeberg.org/piebot/LegacyEvolved:
  feat: Ctrl+Q to drop all stack
2026-04-02 14:45:51 +02:00
Lord_Cambion e5a8abd2ac herobrine removed 2026-04-02 14:45:46 +02:00
neoapps-dev 3fb20049b9 feat: Ctrl+Q to drop all stack 2026-04-02 15:25:12 +03:00
Lord_Cambion a552afded7 doubled speed of minecartfurnace 2026-04-02 14:21:31 +02:00
Lord_Cambion 4fb2723109 Aggiorna Minecraft.Server/cmake/sources/Common.cmake 2026-04-01 22:48:24 +02:00
Lord_Cambion bd7a02fe3b Aggiorna Minecraft.Client/CMakeLists.txt 2026-04-01 22:32:25 +02:00
Lord_Cambion 4ee0e9e5e9 Carica file su "Minecraft.Client" 2026-04-01 22:20:13 +02:00
Lord_Cambion cc2c020af9 Carica file su "Minecraft.Client" 2026-04-01 21:58:31 +02:00
Lord_Cambion 6ed5bd13db Carica file su "Minecraft.World/cmake/sources" 2026-04-01 21:38:28 +02:00
Lord_Cambion 0922d8a872 Carica file su "Minecraft.Client/cmake/sources" 2026-04-01 21:37:37 +02:00
piebot a1e24f50f4 revert 2dadf93acf
revert final readme fix
2026-04-01 20:56:11 +02:00
piebot 2dadf93acf final readme fix 2026-04-01 20:53:08 +02:00
piebot 1e84eb54b0 Update README.md 2026-04-01 20:51:10 +02:00
piebot 789461b5bd Update Acknowledgments Footer 2026-04-01 20:47:44 +02:00
Lord_Cambion 7e8ecc88e3 bug fixed 2026-03-31 19:50:27 +02:00
Lord_Cambion 138c7ab028 bug fixes 2026-03-31 18:00:31 +02:00
piebot 8cb7c5d507 Compiler Fix 2026-03-30 19:46:52 +03:00
piebot 9713d5cdc9 Fix commit (2be90366ba) 2026-03-30 19:45:45 +03:00
ItzSonicFaner 2be90366ba Patch 3 2026-03-30 17:30:26 +03:00
piebot 30b352594b Update README.md 2026-03-30 13:30:06 +02:00
piebot a38abd4e8d Merge changes from upstream. 2026-03-30 14:28:57 +03:00
blongm d3412aaae7
Fixed issue with world seeds not saving correctly (#1119)
## Description
Fix issue where typing in a short seed on world creation doesn't save the seed correctly

## Changes

### Previous Behavior
Typing in a seed on the world creation menu that's less than 8 characters long will result in garbage data being saved as the seed. Happens with controller and KBM.
You can see this in-game - if you exit the world options menu and go back in, the seed will show up as boxes □□□.
Weirdly, if you type a seed again, it behaves as expected.

### Root Cause
For some reason, assigning `m_params->seed` to the seed text points it to garbage data, when it's 7 characters or less.

### New Behavior
Seed entry behaves as expected.

### Fix Implementation
- Added `static_cast<wstring>` before assignment to `m_params->seed`.
- Also replaced `(wchar_t *)` with `reinterpret_cast<wchar_t*>` in the functions.

### AI Use Disclosure
No AI was used
2026-03-30 06:05:32 -05:00
piebot 0cfde5e615 Update .gitea/ISSUE_TEMPLATE/config.yml 2026-03-30 12:54:34 +02:00
piebot 1a80cf849b Merge branch 'main' of codeberg.org:piebot/LegacyEvolved 2026-03-30 13:47:10 +03:00
piebot 1e07e162f5 Update .github to .gitea 2026-03-30 13:46:34 +03:00
piebot d6db6b099e Update README.md 2026-03-30 12:37:44 +02:00
piebot ba460f3956 Update Coarse Dirt and Podzol locations in Creative Menu 2026-03-30 13:34:41 +03:00
piebot b11ef7e68a Fix forgejo runner (Thanks GeorgeV22!) 2026-03-30 12:46:19 +03:00
neoapps-dev ae2dac022c feat(parity): climbable trapdoor if connected to ladder 2026-03-29 20:50:57 +03:00
itsRevela e706466f42 Send AddPlayerPacket for all players on join and RemoveEntitiesPacket on disconnect
Players now appear in each other's Tab list immediately on join,
regardless of render distance. Previously, players only appeared when
they entered entity tracking range because AddPlayerPacket was only
sent through the TrackedEntity system.

On disconnect, a RemoveEntitiesPacket is broadcast to all clients so
players added via the join broadcast are properly cleaned up, not just
those within tracking range.
2026-03-29 20:30:12 +03:00