diff options
| author | Fuwn <[email protected]> | 2024-06-07 21:32:00 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-07 21:33:57 -0700 |
| commit | ba1df38d22387de325db062edd2cfa72cabe29cd (patch) | |
| tree | 20661624fd7d2fe0ed035b1f40e50dac7be07320 /bin/decompile | |
| download | worldsplayer_source_editor-ba1df38d22387de325db062edd2cfa72cabe29cd.tar.xz worldsplayer_source_editor-ba1df38d22387de325db062edd2cfa72cabe29cd.zip | |
feat: initial release
Diffstat (limited to 'bin/decompile')
| -rwxr-xr-x | bin/decompile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/decompile b/bin/decompile new file mode 100755 index 0000000..b879ccd --- /dev/null +++ b/bin/decompile @@ -0,0 +1,10 @@ +#!/usr/bin/env bash + +main() { + # Replace this with your local path to worlds.jar + local WORLDS_JAR_PATH="${HOME}/.local/share/bottles/bottles/WorldsPlayer/drive_c/Program Files (x86)/Worlds Inc/WorldsPlayer - BowieFull/lib" + + vineflower -ega=true "${WORLDS_JAR_PATH}/worlds.jar" source +} + +main |