mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Merge pull request #2248 from wabbajack-tools/valheim_support
add Game Support Valheim
This commit is contained in:
commit
3deeae06c5
@ -1,8 +1,10 @@
|
|||||||
### Changelog
|
### Changelog
|
||||||
|
|
||||||
#### Version - 3.0.x.x - TBD
|
#### Version - 3.0.x.x - TBD
|
||||||
|
|
||||||
* Fix Website Links
|
* Fix Website Links
|
||||||
* Game Support:
|
* Game support:
|
||||||
|
* Added support for Valheim
|
||||||
* Added Cyberpunk 2077 Epic Games Store support
|
* Added Cyberpunk 2077 Epic Games Store support
|
||||||
|
|
||||||
#### Version - 3.0.4.1 - 11/17/2022
|
#### Version - 3.0.4.1 - 11/17/2022
|
||||||
|
@ -48,5 +48,5 @@ public enum Game
|
|||||||
[Description("Dragons Dogma Dark Arisen")] DragonsDogma,
|
[Description("Dragons Dogma Dark Arisen")] DragonsDogma,
|
||||||
|
|
||||||
[Description("Karryn's Prison")]
|
[Description("Karryn's Prison")]
|
||||||
KarrynsPrison,
|
KarrynsPrison,[Description("Valheim")]Valheim,
|
||||||
}
|
}
|
||||||
|
@ -492,6 +492,23 @@ public static class GameRegistry
|
|||||||
},
|
},
|
||||||
MainExecutable = "nw.exe".ToRelativePath()
|
MainExecutable = "nw.exe".ToRelativePath()
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Game.Valheim, new GameMetaData
|
||||||
|
{
|
||||||
|
Game = Game.Valheim,
|
||||||
|
SteamIDs = new[] { 892970 },
|
||||||
|
MO2Name = "Valheim",
|
||||||
|
MO2ArchiveName = "valheim",
|
||||||
|
NexusName = "valheim",
|
||||||
|
NexusGameId = 3667,
|
||||||
|
IsGenericMO2Plugin = true,
|
||||||
|
RequiredFiles = new []
|
||||||
|
{
|
||||||
|
"valheim.exe".ToRelativePath()
|
||||||
|
},
|
||||||
|
MainExecutable = "valheim.exe".ToRelativePath()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user