Updated jar path to look in ~/.minecraft
This commit is contained in:
parent
785d02c0fa
commit
be94d43ce5
1 changed files with 3 additions and 2 deletions
|
@ -10,10 +10,11 @@ import subprocess
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
# Configuration variables
|
# Configuration variables
|
||||||
minecraft_args = ["java", "-Xmx1024M", "-Xms512M", "-cp", "/home/josh/Desktop/Minecraft.jar", "net.minecraft.LauncherFrame"]
|
minecraft_path = os.environ["HOME"] + "/.minecraft/"
|
||||||
|
minecraft_jar = minecraft_path + "Minecraft.jar"
|
||||||
|
minecraft_args = ["java", "-Xmx1024M", "-Xms512M", "-cp", minecraft_jar, "net.minecraft.LauncherFrame"]
|
||||||
frequency = 60
|
frequency = 60
|
||||||
total_backups = 10
|
total_backups = 10
|
||||||
minecraft_path = os.environ["HOME"] + "/.minecraft/"
|
|
||||||
save_path = minecraft_path + "saves/"
|
save_path = minecraft_path + "saves/"
|
||||||
backup_path = minecraft_path + "backups/"
|
backup_path = minecraft_path + "backups/"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue