|
|
@ -36,9 +36,10 @@ class GameAddOperator(AgeOperator, bpy.types.Operator): |
|
|
|
if w: |
|
|
|
if w: |
|
|
|
# First, verify this is a valid Uru directory... |
|
|
|
# First, verify this is a valid Uru directory... |
|
|
|
path = Path(self.filepath) |
|
|
|
path = Path(self.filepath) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Blendsucks likes to tack filenames onto our doggone directories... |
|
|
|
if not path.is_dir(): |
|
|
|
if not path.is_dir(): |
|
|
|
self.report({"ERROR"}, "The selection is not a valid directory.") |
|
|
|
path = path.parent |
|
|
|
return {"CANCELLED"} |
|
|
|
|
|
|
|
if not ((path / "UruExplorer.exe").is_file() or (path / "plClient.exe").is_file()): |
|
|
|
if not ((path / "UruExplorer.exe").is_file() or (path / "plClient.exe").is_file()): |
|
|
|
self.report({"ERROR"}, "The selected directory is not a copy of URU.") |
|
|
|
self.report({"ERROR"}, "The selected directory is not a copy of URU.") |
|
|
|
return {"CANCELLED"} |
|
|
|
return {"CANCELLED"} |
|
|
@ -53,7 +54,7 @@ class GameAddOperator(AgeOperator, bpy.types.Operator): |
|
|
|
game = games.games[self.game_index] |
|
|
|
game = games.games[self.game_index] |
|
|
|
|
|
|
|
|
|
|
|
# Setup game... |
|
|
|
# Setup game... |
|
|
|
game.path = self.filepath |
|
|
|
game.path = str(path) |
|
|
|
if (path / "cypython22.dll").is_file(): |
|
|
|
if (path / "cypython22.dll").is_file(): |
|
|
|
game.version = "pvPots" |
|
|
|
game.version = "pvPots" |
|
|
|
else: |
|
|
|
else: |
|
|
|