aboutsummaryrefslogtreecommitdiff
path: root/bin/decompile
diff options
context:
space:
mode:
Diffstat (limited to 'bin/decompile')
-rwxr-xr-xbin/decompile10
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