Skip to content

Commit

Permalink
Update GroupData.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Arisa9006 committed Nov 22, 2024
1 parent c1b2ab5 commit 3a886d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/dev/felnull/Data/GroupData.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public class GroupData {
public final String groupName; //グループ名 プレイヤー個人の場合はプレイヤーUUID
public Set<Player> playerList; //グループ所属のプレイヤーリスト 最低1つは格納されるはず
public Map<Player,String[]> playerPermission; //プレイヤーが保持している役職 //StringじゃなくてENUMでやるべきかもです
public Map<Player,String[]> playerPermission; //プレイヤーが保持している役職
public GroupData (String groupName, Set<Player> playerList, Map<Player,String[]> playerPermission) {
this.groupName = groupName;
this.playerList = playerList;
Expand Down

0 comments on commit 3a886d9

Please sign in to comment.