Advertisement
Guest User

Untitled

a guest
Sep 16th, 2023
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.92 KB | Source Code | 0 0
  1. [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 4 spaces (autoblockbreak.sk, line 11: private final List<String> worlds = Arrays.asList("world", "world_nether", "world_end");')
  2. [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 4 spaces (autoblockbreak.sk, line 12: private final String safePermission = "autobreak.block.safe";')
  3. [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 4 spaces (autoblockbreak.sk, line 14: @Override')
  4. [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 4 spaces (autoblockbreak.sk, line 15: public void onEnable() {')
  5. [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 8 spaces (autoblockbreak.sk, line 16: this.getServer().getPluginManager().registerEvents(this, this);')
  6. [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 4 spaces (autoblockbreak.sk, line 17: }')
  7. [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 4 spaces (autoblockbreak.sk, line 19: @EventHandler')
  8. [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 4 spaces (autoblockbreak.sk, line 20: public void onBlockPlace(BlockPlaceEvent event) {')
  9. [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 8 spaces (autoblockbreak.sk, line 21: if (!worlds.contains(event.getBlock().getWorld().getName())) return;')
  10. [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 8 spaces (autoblockbreak.sk, line 23: if (!event.getPlayer().hasPermission(safePermission)) {')
  11. [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 12 spaces (autoblockbreak.sk, line 24: Block block = event.getBlock();')
  12. [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 12 spaces (autoblockbreak.sk, line 25: Bukkit.getScheduler().runTaskLater(this, block::breakNaturally, 20L * 60); // 20 ticks = 1 second, so 20L * 60 = 1 minute')
  13. [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 8 spaces (autoblockbreak.sk, line 26: }')
  14. [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 4 spaces (autoblockbreak.sk, line 27: }')
  15. [12:07:46] [Server thread/ERROR]: [Skript] invalid line - all code has to be put into triggers (autoblockbreak.sk, line 1: import org.bukkit.Bukkit;')
  16. [12:07:46] [Server thread/ERROR]: [Skript] invalid line - all code has to be put into triggers (autoblockbreak.sk, line 2: import org.bukkit.block.Block;')
  17. [12:07:46] [Server thread/ERROR]: [Skript] invalid line - all code has to be put into triggers (autoblockbreak.sk, line 3: import org.bukkit.event.EventHandler;')
  18. [12:07:46] [Server thread/ERROR]: [Skript] invalid line - all code has to be put into triggers (autoblockbreak.sk, line 4: import org.bukkit.event.Listener;')
  19. [12:07:46] [Server thread/ERROR]: [Skript] invalid line - all code has to be put into triggers (autoblockbreak.sk, line 5: import org.bukkit.event.block.BlockPlaceEvent;')
  20. [12:07:46] [Server thread/ERROR]: [Skript] invalid line - all code has to be put into triggers (autoblockbreak.sk, line 6: import org.bukkit.plugin.java.JavaPlugin;')
  21. [12:07:46] [Server thread/ERROR]: [Skript] invalid line - all code has to be put into triggers (autoblockbreak.sk, line 7: import java.util.Arrays;')
  22. [12:07:46] [Server thread/ERROR]: [Skript] invalid line - all code has to be put into triggers (autoblockbreak.sk, line 8: import java.util.List;')
  23. [12:07:46] [Server thread/ERROR]: [Skript] invalid line - all code has to be put into triggers (autoblockbreak.sk, line 10: public class AutoBreakPlugin extends JavaPlugin implements Listener {')
  24. [12:07:46] [Server thread/ERROR]: [Skript] invalid line - all code has to be put into triggers (autoblockbreak.sk, line 28: }')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement