aboutsummaryrefslogtreecommitdiff
path: root/bin/decompile
blob: b879ccdca8f247263e2f2d9688b124fac9c2fdc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
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