Hello,
I’m running into an issue when trying to use UserSettings.ServerSpecific.SSKeybindSetting inside my plugin PRoleAPI.
When activating the plugin, it fails with the following error:
System.MissingMethodException: Method not found:
Void UserSettings.ServerSpecific.SSKeybindSetting..ctor(System.Nullable`1<int>, string, UnityEngine.KeyCode, bool, string)
[2025-09-18 14:50:26.921 +03:00] [INFO] [PRoleAPI] Registering ability keybinds...
[2025-09-18 14:50:26.931 +03:00] [ERROR] [LabApi] [LOADER] Couldn't enable the plugin 'PRoleAPI', Version: 1.0.0, Author: 'Pelmenbit'
[2025-09-18 14:50:26.941 +03:00] [ERROR] [LabApi] System.MissingMethodException: Method not found: void UserSettings.ServerSpecific.SSKeybindSetting..ctor(System.Nullable`1<int>,string,UnityEngine.KeyCode,bool,string)
Code that triggers the issue:
SSKeybindSetting keybind = new SSKeybindSetting(
ability.Id,
label: ability.Name,
ability.DefaultKeybind
);
