Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.esinia.server.events;
- import org.spongepowered.api.event.Listener;
- import org.spongepowered.api.event.block.ChangeBlockEvent;
- public class EventDecay {
- @Listener
- public void onDecay(ChangeBlockEvent.Decay e){
- e.getTransactions().forEach(t -> t.setValid(false));
- }
- }
Add Comment
Please, Sign In to add comment