mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
added Valheim
This commit is contained in:
parent
8c60dc1197
commit
460d8acb59
@ -1,5 +1,9 @@
|
|||||||
### Changelog
|
### Changelog
|
||||||
|
|
||||||
|
#### Version - 3.0.x.x - TBD
|
||||||
|
* Game support:
|
||||||
|
* Added support for Valheim
|
||||||
|
|
||||||
#### Version - 3.0.4.1 - 11/17/2022
|
#### Version - 3.0.4.1 - 11/17/2022
|
||||||
* Fix recursive writing of meta files for meta files
|
* Fix recursive writing of meta files for meta files
|
||||||
* Improved Admin Check
|
* Improved Admin Check
|
||||||
|
@ -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,
|
||||||
}
|
}
|
||||||
|
@ -491,6 +491,21 @@ 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",
|
||||||
|
IsGenericMO2Plugin = true,
|
||||||
|
RequiredFiles = new []
|
||||||
|
{
|
||||||
|
"valheim.exe".ToRelativePath()
|
||||||
|
},
|
||||||
|
MainExecutable = "valheim.exe".ToRelativePath()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user