|
9 | 9 | using UnityEngine.Networking;
|
10 | 10 | using UnityEngine.Networking.Match;
|
11 | 11 |
|
12 |
| -[assembly: AssemblyVersion("0.9.0.0")] |
13 |
| -[assembly: AssemblyInformationalVersion("0.9.0.0")] |
| 12 | +[assembly: AssemblyVersion("0.9.0.1")] |
| 13 | +[assembly: AssemblyInformationalVersion("0.9.0.1")] |
14 | 14 |
|
15 | 15 | namespace MorePlayers
|
16 | 16 | {
|
17 |
| - [BepInPlugin("notfood.MorePlayers", "EvenMorePlayers", "0.9.0.0")] |
| 17 | + [BepInPlugin("notfood.MorePlayers", "EvenMorePlayers", "0.9.0.1")] |
18 | 18 | public class MorePlayersMod : BaseUnityPlugin
|
19 | 19 | {
|
20 | 20 | public const int newPlayerLimit = 100;
|
21 | 21 |
|
22 | 22 | public static bool fullDebug = true;
|
23 | 23 | public static string og_version;
|
24 |
| - public static string mod_version = "0.9.0.0"; |
| 24 | + public static string mod_version = "0.9.0.1"; |
25 | 25 |
|
26 | 26 | void Awake()
|
27 | 27 | {
|
@@ -65,7 +65,7 @@ static IEnumerable<MethodBase> TargetMethods()
|
65 | 65 | yield return AccessTools.Method(typeof(TurnIndicator), nameof(TurnIndicator.SetPlayerCount));
|
66 | 66 | yield return AccessTools.Method(typeof(UnityMatchmaker), nameof(UnityMatchmaker.CheckHostConnectivity));
|
67 | 67 | //yield return AccessTools.Method(typeof(UnityMatchmaker), nameof(UnityMatchmaker.CreateUnityMatch));
|
68 |
| - yield return AccessTools.Method(typeof(VersusControl), "get_playersLeftToPlace"); |
| 68 | + yield return AccessTools.Method(typeof(VersusControl), "get_playersLeftToPlace"); |
69 | 69 | }
|
70 | 70 |
|
71 | 71 | static IEnumerable<CodeInstruction> Transpiler(IEnumerable<CodeInstruction> e)
|
@@ -115,6 +115,7 @@ static class SwitchSecond4ForMaxNumPatch
|
115 | 115 | static IEnumerable<MethodBase> TargetMethods()
|
116 | 116 | {
|
117 | 117 | yield return AccessTools.Method(typeof(LobbySkillTracker), nameof(LobbySkillTracker.UpdateLobbyInfo));
|
| 118 | + yield return AccessTools.Method(typeof(UnityMatchmaker), nameof(UnityMatchmaker.onLobbyJoined)); |
118 | 119 | }
|
119 | 120 |
|
120 | 121 | static IEnumerable<CodeInstruction> Transpiler(IEnumerable<CodeInstruction> e)
|
|
0 commit comments