You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using MinigamesAPI v1 compiled as of ae27f78, party actions are case-sensitive except invitation.
It causes issues where players seems to be invited but can not join.
It is likely caused by Bukkit.getPlayer which is case-insensitive.
One solution may be to get the target player in partyInvite method from CommandHandler.java after the validation and uses his name directly (getName()) instead of the first command argument, so it uses the exact player name.
I hope you will consider fixing this.
The text was updated successfully, but these errors were encountered:
Using MinigamesAPI v1 compiled as of ae27f78, party actions are case-sensitive except invitation.
It causes issues where players seems to be invited but can not join.
It is likely caused by Bukkit.getPlayer which is case-insensitive.
One solution may be to get the target player in partyInvite method from CommandHandler.java after the validation and uses his name directly (getName()) instead of the first command argument, so it uses the exact player name.
I hope you will consider fixing this.
The text was updated successfully, but these errors were encountered: