Advertisement
MsGamerHD

Untitled

Jul 24th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. package de.msgamerhd.lostisland.insel;
  2.  
  3. import java.util.ArrayList;
  4.  
  5. import org.bukkit.Material;
  6. import org.bukkit.inventory.ItemStack;
  7.  
  8. /**
  9.  * Class created by MsGamerHD on 25.07.2016
  10.  */
  11. public class Belohnung {
  12.  
  13.     public static ArrayList<ItemStack> wahrerhelfer = new ArrayList<>();
  14.     public static ArrayList<ItemStack> strandquest = new ArrayList<>();
  15.    
  16.     public static void loadBelohnung(){
  17.         wahrerhelfer.add(new ItemStack(Material.LAVA_BUCKET));
  18.  
  19.         strandquest.add(new ItemStack(Material.SAND, 16));
  20.     }
  21.    
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement