()
| 58 | } |
| 59 | |
| 60 | public String getGamePath() { |
| 61 | if (this.gamePath != null) { |
| 62 | File f = new File(this.gamePath); |
| 63 | if (f.exists()) { |
| 64 | return this.gamePath; |
| 65 | } |
| 66 | } |
| 67 | String path = Periphery.CONFIG.getSteamPath() + File.separator + Steam.STEAM_GAME_PATH() + File.separator + Steam.STEAM_SDK_PATH + File.separator |
| 68 | + this.getShortName() + File.separator + Steam.STEAM_MAP_SRC_PATH; |
| 69 | Loggger.log(path); |
| 70 | return path; |
| 71 | } |
| 72 | |
| 73 | public String getGameHammerPath(Config config) { |
| 74 | String path = config.getSteamPath() + File.separator + Steam.STEAM_GAME_PATH() + File.separator + this.nameLong + File.separator + "bin" |
no test coverage detected