Skip to content
This repository has been archived by the owner on Dec 17, 2021. It is now read-only.

Commit

Permalink
hotfix 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
potatoes1286 committed Dec 15, 2020
1 parent a282de2 commit f46f31d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
12 changes: 8 additions & 4 deletions H3VRModInstaller.Backend/Filesys/Common/ModList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ public Tuple<string[,]> getModInfo(string mod, string[,] modlist = null)
case "meatsmpx":
info = meatsmpxInfo;
break;
case "meatsmodulm4":
info = meatsmodulm4Info;
break;
case "ebr":
info = ebrInfo;
break;
Expand All @@ -138,9 +141,9 @@ public Tuple<string[,]> getModInfo(string mod, string[,] modlist = null)
public string[] LSIICInfo = { "LSIIC-v1.3.zip", "https://github.com/BlockBuilder57/LSIIC/releases/download/v1.3/", "addFolder?VirtualObjects/?unzipToDir?", "bepinex", "sideloader" };
public string[] ConfigurationManagerInfo = { "BepInEx.ConfigurationManager_v16.1.zip", "https://github.com/BepInEx/BepInEx.ConfigurationManager/releases/download/v16.1/", "", "bepinex" };

public string[] CursedDllsInfo = { "CursedDlls.BepInEx_v1.3.zip", "https://github.com/drummerdude2003/CursedDlls.BepinEx/releases/download/v1.3/", "", "bepinex", "monomod" };
public string[] WurstModInfo = { "WurstMod.deli", "https://github.com/Nolenz/WurstMod/releases/download/v2.0.2.0/", "moveToFolder?WurstMod.deli?Mods/?WurstMod.deli", "bepinex", "deli"};
public string[] TnHTweaker = { "TakeAndHoldTweaker.dll", "https://github.com/devyndamonster/TakeAndHoldTweaker/releases/download/v1.3.0/", "moveToFolder?TakeAndHoldTweaker.dll?BepInEx/plugins/?TakeAndHoldTweaker.dll", "bepinex" };
public string[] CursedDllsInfo = { "CursedDlls.BepInEx_v1.3.zip", "https://github.com/drummerdude2003/CursedDlls.BepinEx/releases/download/v1.3/", "unzipToDir?BepInEx/plugins/", "bepinex", "monomod" };
public string[] WurstModInfo = { "WurstMod.deli", "https://github.com/Nolenz/WurstMod/releases/download/v2.0.2.0/", "", "bepinex", "deli"};
public string[] TnHTweaker = { "TakeAndHoldTweaker.Unzip.Me.zip", "https://github.com/devyndamonster/TakeAndHoldTweaker/releases/download/v1.4.0/", "", "bepinex", "deli" };
public string[] H3VRUtilsInfo = { "H3VRUtilities.zip", "https://bonetome.com/download.php?file=MTRmZjdkYWM4M2YzNDdmNCszNjUrODUx", "unzipToDir?Mods/", "bepinex", "sideloader" };
public string[] pccgInfo = { "PotatoesCustomGuns.zip", "https://bonetome.com/download.php?file=NGFmYTMxOWRjNmEwMTdhMSszNjUrNzUw", "unzipToDir?VirtualObjects/", "lsiic" };
public string[] meatyceiverInfo = { "Meatyceiver032.zip", "https://bonetome.com/download.php?file=ZDMxZjYzMTgxYTg5OTdlYiszNjUrODk0", "unzipToDir?BepInEx/plugins/", "bepinex", "configurationmanager" };
Expand All @@ -153,7 +156,8 @@ public Tuple<string[,]> getModInfo(string mod, string[,] modlist = null)
public string[] meatsModulAKInfo = { "MeatsModulAK1.1.zip", "https://bonetome.com/download.php?file=NzFhNzc3MWJiZjQ2OWJhOCszNjUrODYx", "unzipToDir?VirtualObjects/", "lsiic", "h3vrutils" };
public string[] meatsModulARPartsInfo = { "MeatsARParts.zip", "https://bonetome.com/download.php?file=NDU1MzQwZmVkOTA4YmYzYyszNjUrODQ3", "unzipToDir?VirtualObjects/", "lsiic", "modular" };
public string[] ebrInfo = { "mk14+dcsb.zip", "https://bonetome.com/download.php?file=YzM2MTcyN2ZlYTRjNWRhNiszNjUrODg4", "unzipToDir?VirtualObjects/", "lsiic" };
public string[] meatsmpxInfo = { "MeatsModulMPX", "https://bonetome.com/download.php?file=ZmZjNzFkZjA3NjM4NTI2NCszNjUrOTU1", "unzipToDir?VirtualObjects/", "lsiic", "h3vrutils", "modular"};
public string[] meatsmpxInfo = { "MeatsModulMPX.zip", "https://bonetome.com/download.php?file=ZmZjNzFkZjA3NjM4NTI2NCszNjUrOTU1", "unzipToDir?VirtualObjects/", "lsiic", "h3vrutils", "modular"};
public string[] meatsmodulm4Info = { "MeatsModulM4.zip", "https://bonetome.com/download.php?file=MGI3M2Y4ZGUwMjM5OWI2NyszNjUrOTYw", "unzipToDir?VirtualObjects/", "lsiic"};

public bool onlineCheck()
{
Expand Down
1 change: 1 addition & 0 deletions H3VRModInstaller.Backend/MainClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ public static void listAllCustomItems()
Console.WriteLine("meatsmodulak");
Console.WriteLine("meatsmodularparts");
Console.WriteLine("meatsmpx");
Console.WriteLine("meatsmodulm4");
Console.WriteLine("ebr");
}
}
Expand Down

0 comments on commit f46f31d

Please sign in to comment.