Advertisement
Lisenochek

Untitled

Sep 22nd, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. package com.realistic.list;
  2.  
  3. import java.util.ArrayList;
  4. import java.util.HashMap;
  5.  
  6. import org.bukkit.Location;
  7. import org.bukkit.Material;
  8. import org.bukkit.entity.Player;
  9.  
  10. public class MinecraftList {
  11.  
  12. public static HashMap<Material, String> blocks = new HashMap<Material, String>();
  13. public static HashMap<Material, String> tools = new HashMap<Material, String>();
  14. public static HashMap<String, Boolean> bloodingPlayers = new HashMap<String, Boolean>();
  15. public static HashMap<String, Boolean> Disease_Cold = new HashMap<String, Boolean>();
  16. public static HashMap<String, Boolean> Disease_Pneumonia = new HashMap<String, Boolean>();
  17. public static HashMap<String, Boolean> Broken_Bones = new HashMap<String, Boolean>();
  18. public static HashMap<Player, Location> commonSignal = new HashMap<>();
  19.  
  20. public static ArrayList<String> WLWorlds = new ArrayList<>();
  21. public static ArrayList<String> WLSWorlds = new ArrayList<>();
  22. public static ArrayList<Player> donaterSignal = new ArrayList<Player>();
  23. public static ArrayList<Player> commandCrate = new ArrayList<Player>();
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement