Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [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");')
- [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";')
- [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 4 spaces (autoblockbreak.sk, line 14: @Override')
- [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 4 spaces (autoblockbreak.sk, line 15: public void onEnable() {')
- [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);')
- [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 4 spaces (autoblockbreak.sk, line 17: }')
- [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 4 spaces (autoblockbreak.sk, line 19: @EventHandler')
- [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) {')
- [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;')
- [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)) {')
- [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: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')
- [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 8 spaces (autoblockbreak.sk, line 26: }')
- [12:07:46] [Server thread/ERROR]: [Skript] indentation error: expected 0 tabs, but found 4 spaces (autoblockbreak.sk, line 27: }')
- [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;')
- [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;')
- [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;')
- [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;')
- [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;')
- [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;')
- [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;')
- [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;')
- [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 {')
- [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