Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @EventHandler
- public void onBlockGrowEvent(BlockGrowEvent event)
- {
- System.out.print("Log - BlockGrowEvent: " + event.getBlock().getType());
- }
- @EventHandler
- public void onStructureGrowEvent(StructureGrowEvent event)
- {
- System.out.print("Log - StructureGrowEvent: " + event.getSpecies().name());
- }
- @EventHandler
- public void onBlockFormEvent(BlockFormEvent event)
- {
- System.out.print("Log - BlockFormEvent: " + event.getBlock().getType());
- }
- @EventHandler
- public void onBlockSpreadEvent(BlockSpreadEvent event)
- {
- System.out.print("Log - BlockSpreadEvent: " + event.getBlock().getType());
- }
- //@EventHandler
- public void onBlockPhysicsEvent(BlockPhysicsEvent event)
- {
- System.out.print("Log - BlockPhysicsEvent: " + event.getBlock().getType());
- }
- @EventHandler
- public void onBlockFromToEvent(BlockFromToEvent event)
- {
- System.out.print("Log - BlockFromToEvent: " + event.getBlock().getType());
- }
- #All that is detected
- 19.08 23:43:56 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:43:56 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:43:56 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:43:57 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:44:07 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:44:08 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:44:08 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:44:10 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:44:16 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:44:17 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:44:17 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:44:19 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:44:21 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:44:22 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:44:26 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:44:27 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
- 19.08 23:44:28 [Server] INFO Log - BlockGrowEvent: CHORUS_FLOWER
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement