()
| 38 | public static final String SOURCEFORGE_URL = "http://sf.net/p/mudmap"; |
| 39 | |
| 40 | public static String getHome(){ |
| 41 | String ret; |
| 42 | if(System.getProperty("os.name").toLowerCase().contains("win")){ |
| 43 | // operating system Windows |
| 44 | ret = System.getenv().get("APPDATA"); |
| 45 | } else { |
| 46 | // other operating systems |
| 47 | ret = System.getProperty("user.home"); |
| 48 | } |
| 49 | return ret; |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Gets the user data path |