aboutsummaryrefslogtreecommitdiff
path: root/bin/decompile
blob: de4359892e45b2a7048cc1ee61e19b90378602ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash

main() {
  # Replace this with your local path to worlds.jar
  local WORLDSPLAYER_JAR=${WORLDSPLAYER_JAR:-"${HOME}/.local/share/bottles/bottles/WorldsPlayer/drive_c/Program Files (x86)/Worlds Inc/WorldsPlayer - BowieFull/lib/worlds.jar"}

  echo "Using WORLDSPLAYER_JAR=${WORLDSPLAYER_JAR}"

  vineflower -ega=true "${WORLDSPLAYER_JAR}" source
}

main