LuckPerms

LuckPerms

41.4k Downloads

LuckPerms saves in MySQL unnecessary datas

Opened this issue ยท 2 comments

commented

I don't remember where i read that LuckPerms don't save in MySQL a player if it belongs to default group (es. default) but in my server this information is stored.
https://image.prntscr.com/image/E1WvYug-TlOWMJ4l3NxK6w.png

And i don't know after the conversetion from PowerfulPerms i have this unnecessary datas
https://image.prntscr.com/image/Er8FwpLVTgSes-YEEOV3SQ.png

commented

Data is always saved to luckperms_players. That's totally normal.

The reason you have those entries in luckperms_user_permissions is because people are in "utente" as well as default.

You might be able to clean this up with the bulkupdate command.

Otherwise, I wouldn't worry too much about it.

commented

So i can do only
/lp bulkupdate user delete "permission == group.utente"
or both
/lp bulkupdate user delete "permission == group.utente"
/lp bulkupdate user delete "permission == group.default"
Thanks for reply.