Skip to content
This repository has been archived by the owner on Dec 7, 2022. It is now read-only.

Commit

Permalink
Update developers list
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin committed Dec 15, 2015
1 parent e047b34 commit ab03b0c
Showing 1 changed file with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,25 @@
import org.bukkit.permissions.PermissionAttachment;
import org.bukkit.plugin.Plugin;

import java.util.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;


public class PermissionModule implements Module {

private final Plugin plugin;
private final Map<Player, PermissionAttachment> attachmentMap;

private List<UUID> developers = Arrays.asList(UUID.fromString("670223bb-7560-48c8-8f01-2f463549b917") /* twiz_mwazin */, UUID.fromString("33a703d0-3237-4337-9ddd-3dbf33b3d8a6") /* iEli2tyree011 */, UUID.fromString("208c84af-790a-41da-bf7e-eb184f17bdf8") /* Elly */, UUID.fromString("260004f0-996b-4539-ba21-df4ee6336b63") /* Elliott_ */);
private List<UUID> developers = Arrays.asList(
UUID.fromString("670223bb-7560-48c8-8f01-2f463549b917") /* twiz_mwazin */,
UUID.fromString("33a703d0-3237-4337-9ddd-3dbf33b3d8a6") /* iEli2tyree011 */,
UUID.fromString("208c84af-790a-41da-bf7e-eb184f17bdf8") /* Elly */,
UUID.fromString("260004f0-996b-4539-ba21-df4ee6336b63") /* Elliott_ */,
UUID.fromString("e82603df-417d-4a95-bd1f-1720648be0b4") /* Pablete1234 */);
private List<OfflinePlayer> muted = new ArrayList<>();

public PermissionModule(Plugin plugin) {
Expand Down

3 comments on commit ab03b0c

@Pablete1234
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@Prodigy4532
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(+1)

@Zenzoh
Copy link

@Zenzoh Zenzoh commented on ab03b0c Jan 30, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Please sign in to comment.