For some odd reason after unloading and loading the project and changing a default message i get this error.
Worked fine before.. I changed the message back to the old one but this error is keep happening.
private static Dictionary<string, object> _PermissionDic()
{
var x = new Dictionary<string, object>
{
{"npcpoints.default", 20.0},
{"npcpoints.vip", 50.0}
};
return x;
}
private Dictionary<string, object> permissionList;
private void LoadVariables()
{
permissionList = (Dictionary<string, object>)GetConfig("Permission", "Permission List", _PermissionDic());
}
private void OnServerInitialized()
{
foreach (var entry in permissionList)
permission.RegisterPermission(entry.Key, this);
}
(02:35:39) | Missing plugin name prefix 'pointsystem.' for permission 'npcpoints.default' (by plugin 'Test Plugin')
(02:35:39) | Missing plugin name prefix 'pointsystem.' for permission 'npcpoints.vip' (by plugin 'Test Plugin')