Enum CompatibilityLevel
Determines the level of compatibility of a mod which is enforced by Jötunn.
Servers disconnect clients with mods which enforce their compatibility when
the version does not match as defined by the VersionStrictness attribute.
Namespace: Jotunn.Utils
Assembly: Jotunn.dll
Syntax
public enum CompatibilityLevel
Fields
Name | Description |
---|---|
ClientMustHaveMod | If mod is installed on the server, every client has to have it. VersionStrictness does apply when both sides have it. |
EveryoneMustHaveMod | Mod must be loaded on server and client. Version checking depends on the VersionStrictness. |
NotEnforced | Mod is not checked at all, VersionsStrictness does not apply. |
ServerMustHaveMod | If mod is installed on the client, the server has to have it. VersionStrictness does apply when both sides have it. |
VersionCheckOnly | Version check is performed when both server and client have the mod, no check if the mod is actually installed. |