Modified MINETEST_PATH to auto get the home user

master
aBlender 2018-03-15 11:06:52 -07:00
parent 5d65481f3b
commit 6364c06513
1 changed files with 2 additions and 2 deletions

View File

@ -109,8 +109,8 @@
(define MINETEST_PATH
(cond
[(eq? (system-type 'os) 'unix) "/home/thoughtstem/.minetest/"]
[(eq? (system-type 'os) 'macosx) (string-append (path->string home) "/Library/Application Support/minetest")]
[(eq? (system-type 'os) 'unix) (string-append (path->string home) ".minetest/")]
[(eq? (system-type 'os) 'macosx) (string-append (path->string home) "Library/Application Support/minetest")]
[(eq? (system-type 'os) 'windows) "C:/minetest/"]))
;DATA STRUCTURES