mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Merge pull request #990 from ixanza/patch-1
Update GameMetaData.cs for Stardew Valley
This commit is contained in:
commit
1a03027c3d
@ -31,7 +31,9 @@ namespace Wabbajack.Common
|
|||||||
//MO2 Non-BGS Games
|
//MO2 Non-BGS Games
|
||||||
[Description("Darkest Dungeon")]
|
[Description("Darkest Dungeon")]
|
||||||
DarkestDungeon,
|
DarkestDungeon,
|
||||||
Witcher3
|
Witcher3,
|
||||||
|
[Description("Stardew Valley")]
|
||||||
|
StardewValley
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class GameExtensions
|
public static class GameExtensions
|
||||||
@ -449,7 +451,24 @@ namespace Wabbajack.Common
|
|||||||
},
|
},
|
||||||
MainExecutable = @"bin\x64\witcher3.exe"
|
MainExecutable = @"bin\x64\witcher3.exe"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
Game.StardewValley, new GameMetaData
|
||||||
|
{
|
||||||
|
Game = Game.StardewValley,
|
||||||
|
NexusName = "stardewvalley",
|
||||||
|
MO2Name = "Stardew Valley",
|
||||||
|
NexusGameId = 1303,
|
||||||
|
SteamIDs = new List<int>{413150},
|
||||||
|
GOGIDs = new List<int>{1453375253},
|
||||||
|
IsGenericMO2Plugin = true,
|
||||||
|
RequiredFiles = new List<string>
|
||||||
|
{
|
||||||
|
"Stardew Valley.exe"
|
||||||
|
},
|
||||||
|
MainExecutable = "Stardew Valley.exe"
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
public static Dictionary<long, Game> ByNexusID =
|
public static Dictionary<long, Game> ByNexusID =
|
||||||
|
Loading…
Reference in New Issue
Block a user