Added support for workshop install for other platforms (MacOS is likely still borked, but I don't have a Mac to test it)

This commit is contained in:
EvilFactory
2023-05-03 12:38:29 -03:00
parent 8df9f7798e
commit 8e6f8cc5e6
4 changed files with 9 additions and 5 deletions
@@ -32,7 +32,14 @@ namespace Barotrauma
{
public const string LuaSetupFile = "Lua/LuaSetup.lua";
public const string VersionFile = "luacsversion.txt";
#if WINDOWS
public static ContentPackageId LuaForBarotraumaId = new SteamWorkshopId(2559634234);
#elif LINUX
public static ContentPackageId LuaForBarotraumaId = new SteamWorkshopId(2970628943);
#elif OSX
public static ContentPackageId LuaForBarotraumaId = new SteamWorkshopId(2970890020);
#endif
public static ContentPackageId CsForBarotraumaId = new SteamWorkshopId(2795927223);