Advertisement
manusoftar

Untitled

Aug 2nd, 2015
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1.  @EventHandler
  2.     public void modPostLoad(WorldEvent.Load event){
  3.         LinkedList ublocks = FileIO.readUnbrekableBlocks();
  4.         LinkedList mines = FileIO.readMinesFound();
  5.        
  6.         if (ublocks != null){
  7.            mfc.unbreakablePos = (LinkedList)ublocks.clone();
  8.         }
  9.        
  10.         if (mines != null){
  11.           mfc.minesFound = (LinkedList)mines.clone();
  12.         }
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement