16 lines
455 B
C#
16 lines
455 B
C#
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;
|
|
}
|
|
}
|
|
} |