Class PatchCategory
Namespace: WukongMp.Api.Configuration
Assembly: WukongMp.Api.dll
Category for Harmony patches. Each patch must be assigned to a category.
public static class PatchCategory
Inheritanceâ
object â PatchCategory
Inherited Membersâ
object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Fieldsâ
Connectedâ
Patches in this category are only enabled when the player is connected to the server. NOTE: In the current version of the SDK, this category is the same as Global. In the future, we will add support for enabling/disabling these patches based on the connection state of the player.
public const string Connected = "Connected"
Field Valueâ
Disabledâ
Patches in this category are not enabled.
public const string Disabled = "Disabled"
Field Valueâ
Globalâ
Patches in this category are enabled at all times.
public const string Global = "Global"