Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Lite2Edit
ModMIT

Lite2Edit

Lite2Edit is a small Fabric mod that lets WorldEdit open Litematica schematic files (.litematic / .ltc). In short: if you have a schematic created with Litematica, Lite2Edit helps WorldEdit read it so you can paste or edit it in Minecraft

2.4K
Downloads
5
Followers
3 months ago
Updated
📦
30
Versions
game-mechanicsoptimizationfabric
Download Latestvlite2edit-fabric-1.21.5-0.8View on Modrinth

📖About Lite2Edit

CI
Automatic Dependency Submission
Build and Publish Release

Lite2Edit

Lite2Edit is a small Fabric mod that lets WorldEdit open Litematica schematic files (.litematic).


Mod on Modrinth and Github

You can download the mod from Modrinth via: https://modrinth.com/mod/lite2edit

You can see the source code via: https://github.com/Erik-Donath/lite2edit

Quick introduction

  • What it does: Converts Litematica .litematic schematics into a WorldEdit clipboard that you can paste or manipulate.
  • Who it's for: Players and server admins who use Fabric + WorldEdit and want to import Litematica files easily.
  • Simple install: drop the mod JAR into your Fabric mods/ folder (alongside WorldEdit and required Fabric components).

How to use

  1. Put the Lite2Edit mod JAR into your Fabric mods/ folder.
  2. Make sure Fabric Loader, Fabric Language Kotlin, and WorldEdit (Fabric build) are installed.
  3. Start Minecraft (client or server).
  4. Load a .litematic file with //schematic load "...". The schematic will load as a clipboard you can paste and edit. (Note: the .litematic writer is currently not implemented.)

If you prefer building from source, run:

git clone https://github.com/Erik-Donath/Lite2Edit.git
./gradlew build
# copy the generated JAR from build/libs/ into your mods/ folder

How it works

This section explains what the mod does behind the scenes:

  • Litematica files store world pieces as NBT data (a structured binary format Minecraft uses). Schematics contain regions made of blocks, a palette that lists unique block types used, tile-entity data (for chests, signs, furnaces, etc.), and optionally entities.

  • Lite2Edit reads the Litematica file and parses the NBT structure. It understands:

    • The schematic metadata (name, author, timestamps).
    • One or more regions, each with a position and size.
    • The block palette (a list of block names and property sets).
    • The block data as a compact, bit-packed list of palette indexes.
    • Tile entities and entities stored with their coordinates and NBT.
  • Block conversion:

    • The mod maps each palette entry (for example "minecraft:oak_log" with properties like facing) to a WorldEdit BlockState. When possible it preserves block properties (like rotation or waterlogged state) so the pasted structure looks correct.
    • The bit-packed block data is decoded to determine which palette entry belongs at each block position.
  • Tile entities and entities:

    • Tile-entity NBT (chest contents, sign text, custom block data) is converted into the format WorldEdit expects and attached to the corresponding block when the clipboard is created, so chests and other NBT-bearing blocks keep their data where possible.
  • Regions and negative sizes:

    • Litematica can store multiple named regions in a single file. Lite2Edit can combine multiple regions into a single WorldEdit clipboard by computing a bounding box that contains all regions.
    • Some regions are defined with negative dimensions; the mod normalizes these so blocks end up in the correct positions in the clipboard.
  • What’s not done yet:

    • Exporting/saving WorldEdit clipboards back into .litematic files (the writer is currently not implemented).
    • Full entity conversion (living mobs and some entity types are not converted; tile entities are supported).

Practical notes & limits

  • Most blocks and common properties are converted correctly; very unusual custom blocks or modded blocks might not map perfectly and could be skipped or logged.
  • If a block type is unknown to WorldEdit, the mod will warn in the logs and skip that block.
  • Tile entities are converted when possible, but very complex or mod-specific NBT may not round-trip perfectly.
  • Check Minecraft logs when troubleshooting imports; conversion warnings and errors are recorded there. Please report any issues you encounter on the Issue Page.

License & contributing

  • License: MIT see LICENSE.txt in this repository.
  • Contributions: Pull requests and issues are welcome. If you want to:
    • Add the .litematic writer (export support), include an example schematic to validate round-trip correctness.
    • Improve block/property mapping or tile-entity handling, keep changes small and document behavior differences.

To contribute:

  1. Fork the repository.
  2. Create a feature branch.
  3. Submit a pull request describing your change and any testing you performed.

Thank you for using Lite2Edit. If you run into problems or want a feature, open an issue on GitHub.

👥 Team & Contributors

Erik-Donath
Erik-DonathOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
fabric
Minecraft Versions
1.21.5

🔗 Links

Modrinth Page