Ghaz-ranka

Untitled

May 17th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. package com.esinia.server.events;
  2.  
  3. import org.spongepowered.api.event.Listener;
  4. import org.spongepowered.api.event.block.ChangeBlockEvent;
  5.  
  6. public class EventDecay {
  7.  
  8. @Listener
  9. public void onDecay(ChangeBlockEvent.Decay e){
  10. e.getTransactions().forEach(t -> t.setValid(false));
  11. }
  12. }
Add Comment
Please, Sign In to add comment