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; } } }