Added Photon Patch
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using HarmonyLib;
|
||||
using Photon.Realtime;
|
||||
|
||||
namespace MMOKitchen.Patches
|
||||
{
|
||||
[HarmonyPatch(typeof(LoadBalancingClient), "OpCreateRoom")]
|
||||
public class PhotonNetworkServicePatch
|
||||
{
|
||||
static void Prefix(EnterRoomParams enterRoomParams)
|
||||
{
|
||||
if (enterRoomParams == null) return;
|
||||
if (enterRoomParams.RoomOptions == null) return;
|
||||
enterRoomParams.RoomOptions.MaxPlayers = Mod.MaxPlayers;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user