https://github.com/zebp/simple-yarn-deobf
A simple deobfuscator for minecraft mods built for Fabric's Yarn mappings
https://github.com/zebp/simple-yarn-deobf
Last synced: about 2 months ago
JSON representation
A simple deobfuscator for minecraft mods built for Fabric's Yarn mappings
- Host: GitHub
- URL: https://github.com/zebp/simple-yarn-deobf
- Owner: zebp
- Created: 2019-06-29T16:01:35.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-12T13:27:43.000Z (almost 6 years ago)
- Last Synced: 2025-03-15T08:12:33.680Z (2 months ago)
- Language: Java
- Size: 452 KB
- Stars: 15
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Yarn Deobf
A simple deobfuscator for minecraft mods built for Fabric's Yarn mappings## Usage
The deobfusactor requires the following arguments be provided.
- Input, the input jar to deobfuscate
- Output, where the deobfuscated jar should be saved
- Mappings, the version of the yarn mappings that should be used, `1.14.3+build.9` for example
- From, the current mapping type the jar is using; either OFFICIAL, INTERMEDIARY, or NAMED
- To, the target mapping type.Example command `java -jar ./build/libs/simple-yarn-deobf-0.1.0.jar --input ./working/OptiFine-1.14.3_HD_U_F1.jar --output ./working/OptiFine-1.14.3_HD_U_F1.dev.jar --mappings 1.14.3+build.9 --from OFFICIAL --to NAMED`