Skript can be found below:
Heres the error:
Code:
# Cooldown Skript v1.0
# Created by Skptical
# A simple cooldown API that utilizes the bossbar
# to show a counting down cooldown for specific items or abilities.
#
# Requirements:
# - Skellete
# - Skript
# Global variables
# Can be changed to adjust the cooldown message in the bossbar
# Must be a string datatype
variables:
noCoolDownMessaage = " &eis ready to use!"
coolDownMessage = " &ewill be ready to use again in &c "
# Debug() Function
# Broadcasts information with debug prefix
# Only intended to be used to debug variables and functions
# Usage: debug(debugInfo)
function debug(message :text):
loop all players:
send message "&c(DEBUG BROADCAST) %{_message}%" to loop-player
# updateCoolDown() Function
# Updates and displays the bossbar used for the cooldown, main function.
# Usage: update(playerToShowCooldown, nameOfCoolDownItem)
# Do not use this function to do a cooldown please use showCoolDown()
# this function is meant to be used by API's and other built in functions (Only use if you know what your doing)
function updateCoolDown(player: player, name: text):
if {%{_player}%.cooldown.%{_name}%} > -4:
while true:
if {%{_player}%.cooldown.%{_name}%} is 0:
set {%{_player}%.active.%{_name}%} to false
send action bar "%{_name}%%{noCoolDownMessaage}%" to {_player}
wait 3 seconds
set {%{_player}%.cooldown.%{_name}%} to -4
stop
else:
send action bar "%{_name}%%{coolDownMessage}%%{%{_player}%.cooldown.%{_name}%}%" to {_player}
loop {%{_player}%.cooldown.%{_name}%} times:
wait 1 second
set {%{_player}%.cooldown.%{_name}%} to {%{_player}%.cooldown.%{_name}%} - 1
send action bar "%{_name}%%{coolDownMessage}%%{%{_player}%.cooldown.%{_name}%}%" to {_player}
# ShowCoolDown() Function
# Shows a visible cooldown to the player via the boss bar, until it has ended.
# Usage: showCooldown(cooldownInSeconds, nameOfCoolDownItem, playerToShowCooldown)
function showCooldown(cooldown: number, name: text, player: player):
if {%{_player}%.active.%{_name}%} is false:
set {%{_player}%.active.%{_name}%} to true
set {%{_player}%.cooldown.%{_name}%} to {_cooldown}
updateCoolDown({_player}, "%{_name}%")
if {%{_player}%.active.%{_name}%} is not true:
if {%{_player}%.active.%{_name}%} is not false:
set {%{_player}%.active.%{_name}%} to true
set {%{_player}%.cooldown.%{_name}%} to {_cooldown}
updateCoolDown({_player}, "%{_name}%")
if {cooldowns.plist::*} does not contain "%{_player}%%{_name}%":
set {%{_player}%.active.%{_name}%} to true
set {%{_player}%.cooldown.%{_name}%} to {_cooldown}
updateCoolDown({_player}, "%{_name}%")
add "%{_player}%%{_name}%" to {cooldowns.plist::*}
# Server start event
# Called when skript is loaded
# This is event is important and should not be removed.
# It ensures that if the server is closed or crashes while a player cooldown is active and does not finish
# the players cooldown running variable is reset upon next join.
on server start:
clear {cooldowns.plist::*}
# !!!!!!!IMPORTANT SECTION!!!!!!!
# If you want to check if a player has a cooldown running
# or the cooldown is currently counting down/active you
# can do so by checking the following player variables:
#
# {%{_player}%.cooldown.%{_name}%} - This is the current cooldown in seconds for an item the player has left.
# this value will go down to -4 as it also displays a "item ready to use "
# message in the bossbar which requires this. If the value is 0 less the cooldown is not active.
# But remember to take into account that this variable will countdown to -4 when using it.
# NOTE: Please replace %{_name}% with the name of the item you created the cooldown with and replace
# %{_player}% with the player that you started the cooldown with.
#
#
# {%{_player}%.active.%{_name}%} - This is the boolean variable that will return true/false based on weather the player
# has the cooldown active for the current item. If the variable is neither true or false,
# then the item or player you are checking the cooldown for doesnt exist so is false. But will return [<none>]. This should be noted.
# NOTE: Please replace %{_name}% with the name of the item you created the cooldown with and replace
# %{_player}% with the player that you started the cooldown with.
#
# This is just some code to check that the cooldown functions with basic items
# This code can be safely removed:
on right click with stick:
showCooldown(10, "Stick", player)
send message "Cooldown" to player
on right click with diamond:
showCooldown(10, "Diamond", player)
send message "Cooldown" to player
# Developers Notes
# TODO:
# - Fix server ending/crashing mid cooldown causing cooldowns to bugged - DONE
# - Add multi item compatability -DONE
# - Fix boss bar power up animation
# - Add choice between bossbar and action bar for the cooldown
# - Fix cooldown so that a new one can be started after the cooldown has ended, not when the bossbar has finished showing. - FIXED
# - Fix multi-crash items in cooldown
Heres the error:
Code:
22.06 00:20:51 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH - git-Paper-32 (MC: 1.20.1) ---
22.06 00:20:51 [Server] [ERROR] The server has not responded for 10 seconds! Creating thread dump
22.06 00:20:51 [Server] [ERROR] ------------------------------
22.06 00:20:51 [Server] [ERROR] Server thread dump (Look for plugins here before reporting to Paper!):
22.06 00:20:51 [Server] [ERROR] ------------------------------
22.06 00:20:51 [Server] [ERROR] Current Thread: Server thread
22.06 00:20:51 [Server] [ERROR] PID: 40 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:20:51 [Server] [ERROR] Stack:
22.06 00:20:51 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.util.chat.ChatMessages.parse(ChatMessages.java:199)
22.06 00:20:51 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.util.chat.ChatMessages.parseToArray(ChatMessages.java:416)
22.06 00:20:51 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.EffActionBar.execute(EffActionBar.java:68)
22.06 00:20:51 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Effect.run(Effect.java:50)
22.06 00:20:51 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:61)
22.06 00:20:51 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
22.06 00:20:51 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.Delay$1.run(Delay.java:109)
22.06 00:20:51 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
22.06 00:20:51 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
22.06 00:20:51 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1480)
22.06 00:20:51 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447)
22.06 00:20:51 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1394)
22.06 00:20:51 [Server] [ERROR] net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1171)
22.06 00:20:51 [Server] [ERROR] net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
22.06 00:20:51 [Server] [ERROR] net.minecraft.server.MinecraftServer$$Lambda$4665/0x0000000801a322d0.run(Unknown Source)
22.06 00:20:51 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:20:51 [Server] [ERROR] ------------------------------
22.06 00:20:51 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
22.06 00:20:51 [Server] [ERROR] ------------------------------
22.06 00:20:56 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH - git-Paper-32 (MC: 1.20.1) ---
22.06 00:20:56 [Server] [ERROR] The server has not responded for 15 seconds! Creating thread dump
22.06 00:20:56 [Server] [ERROR] ------------------------------
22.06 00:20:56 [Server] [ERROR] Server thread dump (Look for plugins here before reporting to Paper!):
22.06 00:20:56 [Server] [ERROR] ------------------------------
22.06 00:20:56 [Server] [ERROR] Current Thread: Server thread
22.06 00:20:56 [Server] [ERROR] PID: 40 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:20:56 [Server] [ERROR] Stack:
22.06 00:20:56 [Server] [ERROR] com.google.gson.internal.bind.TypeAdapters$28.write(TypeAdapters.java:848)
22.06 00:20:56 [Server] [ERROR] com.google.gson.internal.bind.TypeAdapters$28.write(TypeAdapters.java:725)
22.06 00:20:56 [Server] [ERROR] com.google.gson.internal.Streams.write(Streams.java:73)
22.06 00:20:56 [Server] [ERROR] com.google.gson.internal.bind.TreeTypeAdapter.write(TreeTypeAdapter.java:89)
22.06 00:20:56 [Server] [ERROR] com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.write(TypeAdapterRuntimeTypeWrapper.java:70)
22.06 00:20:56 [Server] [ERROR] com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.write(CollectionTypeAdapterFactory.java:97)
22.06 00:20:56 [Server] [ERROR] com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.write(CollectionTypeAdapterFactory.java:61)
22.06 00:20:56 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:825)
22.06 00:20:56 [Server] [ERROR] com.google.gson.Gson.toJsonTree(Gson.java:695)
22.06 00:20:56 [Server] [ERROR] com.google.gson.Gson.toJsonTree(Gson.java:672)
22.06 00:20:56 [Server] [ERROR] com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl.serialize(TreeTypeAdapter.java:172)
22.06 00:20:56 [Server] [ERROR] net.md_5.bungee.chat.BaseComponentSerializer.serialize(BaseComponentSerializer.java:197)
22.06 00:20:56 [Server] [ERROR] net.md_5.bungee.chat.TextComponentSerializer.serialize(TextComponentSerializer.java:34)
22.06 00:20:56 [Server] [ERROR] net.md_5.bungee.chat.TextComponentSerializer.serialize(TextComponentSerializer.java:13)
22.06 00:20:56 [Server] [ERROR] com.google.gson.internal.bind.TreeTypeAdapter.write(TreeTypeAdapter.java:88)
22.06 00:20:56 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:825)
22.06 00:20:56 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:795)
22.06 00:20:56 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:742)
22.06 00:20:56 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:719)
22.06 00:20:56 [Server] [ERROR] net.md_5.bungee.chat.ComponentSerializer.toString(ComponentSerializer.java:79)
22.06 00:20:56 [Server] [ERROR] net.minecraft.network.protocol.game.ClientboundSystemChatPacket.improveBungeeComponentSerialization(ClientboundSystemChatPacket.java:33)
22.06 00:20:56 [Server] [ERROR] net.minecraft.network.protocol.game.ClientboundSystemChatPacket.<init>(ClientboundSystemChatPacket.java:17)
22.06 00:20:56 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.entity.CraftPlayer$2.sendMessage(CraftPlayer.java:3088)
22.06 00:20:56 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.entity.CraftPlayer$2.sendMessage(CraftPlayer.java:3076)
22.06 00:20:56 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.EffActionBar.execute(EffActionBar.java:70)
22.06 00:20:56 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Effect.run(Effect.java:50)
22.06 00:20:56 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:61)
22.06 00:20:56 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
22.06 00:20:56 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.Delay$1.run(Delay.java:109)
22.06 00:20:56 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
22.06 00:20:56 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
22.06 00:20:56 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1480)
22.06 00:20:56 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447)
22.06 00:20:56 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1394)
22.06 00:20:56 [Server] [ERROR] net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1171)
22.06 00:20:56 [Server] [ERROR] net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
22.06 00:20:56 [Server] [ERROR] net.minecraft.server.MinecraftServer$$Lambda$4665/0x0000000801a322d0.run(Unknown Source)
22.06 00:20:56 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:20:56 [Server] [ERROR] ------------------------------
22.06 00:20:56 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
22.06 00:20:56 [Server] [ERROR] ------------------------------
22.06 00:21:01 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH - git-Paper-32 (MC: 1.20.1) ---
22.06 00:21:01 [Server] [ERROR] The server has not responded for 20 seconds! Creating thread dump
22.06 00:21:01 [Server] [ERROR] ------------------------------
22.06 00:21:01 [Server] [ERROR] Server thread dump (Look for plugins here before reporting to Paper!):
22.06 00:21:01 [Server] [ERROR] ------------------------------
22.06 00:21:01 [Server] [ERROR] Current Thread: Server thread
22.06 00:21:01 [Server] [ERROR] PID: 40 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:01 [Server] [ERROR] Stack:
22.06 00:21:01 [Server] [ERROR] [email protected]/java.util.Formatter$FormatSpecifier.<init>(Formatter.java:2901)
22.06 00:21:01 [Server] [ERROR] [email protected]/java.util.Formatter.parse(Formatter.java:2747)
22.06 00:21:01 [Server] [ERROR] [email protected]/java.util.Formatter.format(Formatter.java:2671)
22.06 00:21:01 [Server] [ERROR] [email protected]/java.util.Formatter.format(Formatter.java:2625)
22.06 00:21:01 [Server] [ERROR] [email protected]/java.lang.String.format(String.java:4182)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.util.StringUtils.toString(StringUtils.java:132)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.classes.data.JavaClasses$8.toString(JavaClasses.java:269)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.classes.data.JavaClasses$8.toString(JavaClasses.java:251)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.registrations.Classes.toString(Classes.java:619)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.registrations.Classes.toString(Classes.java:648)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.registrations.Classes.toString(Classes.java:641)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.toString(VariableString.java:373)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.getSingle(VariableString.java:586)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.getSingle(VariableString.java:54)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.EffActionBar.execute(EffActionBar.java:66)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Effect.run(Effect.java:50)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:61)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.Delay$1.run(Delay.java:109)
22.06 00:21:01 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
22.06 00:21:01 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
22.06 00:21:01 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1480)
22.06 00:21:01 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447)
22.06 00:21:01 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1394)
22.06 00:21:01 [Server] [ERROR] net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1171)
22.06 00:21:01 [Server] [ERROR] net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
22.06 00:21:01 [Server] [ERROR] net.minecraft.server.MinecraftServer$$Lambda$4665/0x0000000801a322d0.run(Unknown Source)
22.06 00:21:01 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:01 [Server] [ERROR] ------------------------------
22.06 00:21:01 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
22.06 00:21:01 [Server] [ERROR] ------------------------------
22.06 00:21:06 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH - git-Paper-32 (MC: 1.20.1) ---
22.06 00:21:06 [Server] [ERROR] The server has not responded for 25 seconds! Creating thread dump
22.06 00:21:06 [Server] [ERROR] ------------------------------
22.06 00:21:06 [Server] [ERROR] Server thread dump (Look for plugins here before reporting to Paper!):
22.06 00:21:06 [Server] [ERROR] ------------------------------
22.06 00:21:06 [Server] [ERROR] Current Thread: Server thread
22.06 00:21:06 [Server] [ERROR] PID: 40 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:06 [Server] [ERROR] Stack:
22.06 00:21:06 [Server] [ERROR] [email protected]/java.lang.StringLatin1.toLowerCase(StringLatin1.java:456)
22.06 00:21:06 [Server] [ERROR] [email protected]/java.lang.String.toLowerCase(String.java:3389)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.variables.Variables.getVariable(Variables.java:324)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getRaw(Variable.java:301)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.get(Variable.java:310)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getConverted(Variable.java:458)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getAll(Variable.java:680)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.check(Variable.java:702)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.conditions.CondCompare.check(CondCompare.java:308)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.sections.SecConditional.walk(SecConditional.java:165)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.Delay$1.run(Delay.java:109)
22.06 00:21:06 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
22.06 00:21:06 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
22.06 00:21:06 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1480)
22.06 00:21:06 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447)
22.06 00:21:06 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1394)
22.06 00:21:06 [Server] [ERROR] net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1171)
22.06 00:21:06 [Server] [ERROR] net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
22.06 00:21:06 [Server] [ERROR] net.minecraft.server.MinecraftServer$$Lambda$4665/0x0000000801a322d0.run(Unknown Source)
22.06 00:21:06 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:06 [Server] [ERROR] ------------------------------
22.06 00:21:06 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
22.06 00:21:06 [Server] [ERROR] ------------------------------
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.classes.data.JavaClasses$8.toString(JavaClasses.java:251)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.registrations.Classes.toString(Classes.java:619)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.registrations.Classes.toString(Classes.java:648)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.registrations.Classes.toString(Classes.java:641)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.toString(VariableString.java:373)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.getSingle(VariableString.java:586)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.getSingle(VariableString.java:54)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.EffActionBar.execute(EffActionBar.java:66)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Effect.run(Effect.java:50)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:61)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
22.06 00:21:01 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.Delay$1.run(Delay.java:109)
22.06 00:21:01 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
22.06 00:21:01 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
22.06 00:21:01 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1480)
22.06 00:21:01 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447)
22.06 00:21:01 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1394)
22.06 00:21:01 [Server] [ERROR] net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1171)
22.06 00:21:01 [Server] [ERROR] net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
22.06 00:21:01 [Server] [ERROR] net.minecraft.server.MinecraftServer$$Lambda$4665/0x0000000801a322d0.run(Unknown Source)
22.06 00:21:01 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:01 [Server] [ERROR] ------------------------------
22.06 00:21:01 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
22.06 00:21:01 [Server] [ERROR] ------------------------------
22.06 00:21:06 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH - git-Paper-32 (MC: 1.20.1) ---
22.06 00:21:06 [Server] [ERROR] The server has not responded for 25 seconds! Creating thread dump
22.06 00:21:06 [Server] [ERROR] ------------------------------
22.06 00:21:06 [Server] [ERROR] Server thread dump (Look for plugins here before reporting to Paper!):
22.06 00:21:06 [Server] [ERROR] ------------------------------
22.06 00:21:06 [Server] [ERROR] Current Thread: Server thread
22.06 00:21:06 [Server] [ERROR] PID: 40 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:06 [Server] [ERROR] Stack:
22.06 00:21:06 [Server] [ERROR] [email protected]/java.lang.StringLatin1.toLowerCase(StringLatin1.java:456)
22.06 00:21:06 [Server] [ERROR] [email protected]/java.lang.String.toLowerCase(String.java:3389)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.variables.Variables.getVariable(Variables.java:324)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getRaw(Variable.java:301)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.get(Variable.java:310)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getConverted(Variable.java:458)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getAll(Variable.java:680)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.check(Variable.java:702)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.conditions.CondCompare.check(CondCompare.java:308)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.sections.SecConditional.walk(SecConditional.java:165)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
22.06 00:21:06 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.Delay$1.run(Delay.java:109)
22.06 00:21:06 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
22.06 00:21:06 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
22.06 00:21:06 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1480)
22.06 00:21:06 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447)
22.06 00:21:06 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1394)
22.06 00:21:06 [Server] [ERROR] net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1171)
22.06 00:21:06 [Server] [ERROR] net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
22.06 00:21:06 [Server] [ERROR] net.minecraft.server.MinecraftServer$$Lambda$4665/0x0000000801a322d0.run(Unknown Source)
22.06 00:21:06 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:06 [Server] [ERROR] ------------------------------
22.06 00:21:06 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
22.06 00:21:06 [Server] [ERROR] ------------------------------
22.06 00:21:11 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH - git-Paper-32 (MC: 1.20.1) ---
22.06 00:21:11 [Server] [ERROR] The server has not responded for 30 seconds! Creating thread dump
22.06 00:21:11 [Server] [ERROR] ------------------------------
22.06 00:21:11 [Server] [ERROR] Server thread dump (Look for plugins here before reporting to Paper!):
22.06 00:21:11 [Server] [ERROR] ------------------------------
22.06 00:21:11 [Server] [ERROR] Current Thread: Server thread
22.06 00:21:11 [Server] [ERROR] PID: 40 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:11 [Server] [ERROR] Stack:
22.06 00:21:11 [Server] [ERROR] [email protected]/java.util.HashMap.hash(HashMap.java:338)
22.06 00:21:11 [Server] [ERROR] [email protected]/java.util.HashMap.getNode(HashMap.java:568)
22.06 00:21:11 [Server] [ERROR] [email protected]/java.util.HashMap.get(HashMap.java:556)
22.06 00:21:11 [Server] [ERROR] net.md_5.bungee.api.ChatColor.getByChar(ChatColor.java:236)
22.06 00:21:11 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.util.chat.ChatMessages.parse(ChatMessages.java:310)
22.06 00:21:11 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.util.chat.ChatMessages.parseToArray(ChatMessages.java:416)
22.06 00:21:11 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.EffActionBar.execute(EffActionBar.java:68)
22.06 00:21:11 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Effect.run(Effect.java:50)
22.06 00:21:11 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:61)
22.06 00:21:11 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
22.06 00:21:11 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.Delay$1.run(Delay.java:109)
22.06 00:21:11 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
22.06 00:21:11 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
22.06 00:21:11 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1480)
22.06 00:21:11 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447)
22.06 00:21:11 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1394)
22.06 00:21:11 [Server] [ERROR] net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1171)
22.06 00:21:11 [Server] [ERROR] net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
22.06 00:21:11 [Server] [ERROR] net.minecraft.server.MinecraftServer$$Lambda$4665/0x0000000801a322d0.run(Unknown Source)
22.06 00:21:11 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:11 [Server] [ERROR] ------------------------------
22.06 00:21:11 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
22.06 00:21:11 [Server] [ERROR] ------------------------------
22.06 00:21:16 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH - git-Paper-32 (MC: 1.20.1) ---
22.06 00:21:16 [Server] [ERROR] The server has not responded for 35 seconds! Creating thread dump
22.06 00:21:16 [Server] [ERROR] ------------------------------
22.06 00:21:16 [Server] [ERROR] Server thread dump (Look for plugins here before reporting to Paper!):
22.06 00:21:16 [Server] [ERROR] ------------------------------
22.06 00:21:16 [Server] [ERROR] Current Thread: Server thread
22.06 00:21:16 [Server] [ERROR] PID: 40 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:16 [Server] [ERROR] Stack:
22.06 00:21:16 [Server] [ERROR] [email protected]/java.lang.StringBuffer.append(StringBuffer.java:393)
22.06 00:21:16 [Server] [ERROR] [email protected]/java.io.StringWriter.write(StringWriter.java:122)
22.06 00:21:16 [Server] [ERROR] com.google.gson.stream.JsonWriter.string(JsonWriter.java:642)
22.06 00:21:16 [Server] [ERROR] com.google.gson.stream.JsonWriter.writeDeferredName(JsonWriter.java:402)
22.06 00:21:16 [Server] [ERROR] com.google.gson.stream.JsonWriter.value(JsonWriter.java:469)
22.06 00:21:16 [Server] [ERROR] com.google.gson.internal.bind.TypeAdapters$28.write(TypeAdapters.java:830)
22.06 00:21:16 [Server] [ERROR] com.google.gson.internal.bind.TypeAdapters$28.write(TypeAdapters.java:846)
22.06 00:21:16 [Server] [ERROR] com.google.gson.internal.bind.TypeAdapters$28.write(TypeAdapters.java:838)
22.06 00:21:16 [Server] [ERROR] com.google.gson.internal.bind.TypeAdapters$28.write(TypeAdapters.java:846)
22.06 00:21:16 [Server] [ERROR] com.google.gson.internal.bind.TypeAdapters$28.write(TypeAdapters.java:725)
22.06 00:21:16 [Server] [ERROR] com.google.gson.internal.Streams.write(Streams.java:73)
22.06 00:21:16 [Server] [ERROR] com.google.gson.internal.bind.TreeTypeAdapter.write(TreeTypeAdapter.java:89)
22.06 00:21:16 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:825)
22.06 00:21:16 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:795)
22.06 00:21:16 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:742)
22.06 00:21:16 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:719)
22.06 00:21:16 [Server] [ERROR] net.md_5.bungee.chat.ComponentSerializer.toString(ComponentSerializer.java:79)
22.06 00:21:16 [Server] [ERROR] net.minecraft.network.protocol.game.ClientboundSystemChatPacket.improveBungeeComponentSerialization(ClientboundSystemChatPacket.java:33)
22.06 00:21:16 [Server] [ERROR] net.minecraft.network.protocol.game.ClientboundSystemChatPacket.<init>(ClientboundSystemChatPacket.java:17)
22.06 00:21:16 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.entity.CraftPlayer$2.sendMessage(CraftPlayer.java:3088)
22.06 00:21:16 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.entity.CraftPlayer$2.sendMessage(CraftPlayer.java:3076)
22.06 00:21:16 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.EffActionBar.execute(EffActionBar.java:70)
22.06 00:21:16 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Effect.run(Effect.java:50)
22.06 00:21:16 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:61)
22.06 00:21:16 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
22.06 00:21:16 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.Delay$1.run(Delay.java:109)
22.06 00:21:16 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
22.06 00:21:16 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
22.06 00:21:16 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1480)
22.06 00:21:16 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447)
22.06 00:21:16 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1394)
22.06 00:21:16 [Server] [ERROR] net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1171)
22.06 00:21:16 [Server] [ERROR] net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
22.06 00:21:16 [Server] [ERROR] net.minecraft.server.MinecraftServer$$Lambda$4665/0x0000000801a322d0.run(Unknown Source)
22.06 00:21:16 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:16 [Server] [ERROR] ------------------------------
22.06 00:21:16 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
22.06 00:21:16 [Server] [ERROR] ------------------------------
22.06 00:21:21 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH - git-Paper-32 (MC: 1.20.1) ---
22.06 00:21:21 [Server] [ERROR] The server has not responded for 40 seconds! Creating thread dump
22.06 00:21:21 [Server] [ERROR] ------------------------------
22.06 00:21:21 [Server] [ERROR] Server thread dump (Look for plugins here before reporting to Paper!):
22.06 00:21:21 [Server] [ERROR] ------------------------------
22.06 00:21:21 [Server] [ERROR] Current Thread: Server thread
22.06 00:21:21 [Server] [ERROR] PID: 40 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:21 [Server] [ERROR] Stack:
22.06 00:21:21 [Server] [ERROR] com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.write(CollectionTypeAdapterFactory.java:96)
22.06 00:21:21 [Server] [ERROR] com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.write(CollectionTypeAdapterFactory.java:61)
22.06 00:21:21 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:825)
22.06 00:21:21 [Server] [ERROR] com.google.gson.Gson.toJsonTree(Gson.java:695)
22.06 00:21:21 [Server] [ERROR] com.google.gson.Gson.toJsonTree(Gson.java:672)
22.06 00:21:21 [Server] [ERROR] com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl.serialize(TreeTypeAdapter.java:172)
22.06 00:21:21 [Server] [ERROR] net.md_5.bungee.chat.BaseComponentSerializer.serialize(BaseComponentSerializer.java:197)
22.06 00:21:21 [Server] [ERROR] net.md_5.bungee.chat.TextComponentSerializer.serialize(TextComponentSerializer.java:34)
22.06 00:21:21 [Server] [ERROR] net.md_5.bungee.chat.TextComponentSerializer.serialize(TextComponentSerializer.java:13)
22.06 00:21:21 [Server] [ERROR] com.google.gson.internal.bind.TreeTypeAdapter.write(TreeTypeAdapter.java:88)
22.06 00:21:21 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:825)
22.06 00:21:21 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:795)
22.06 00:21:21 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:742)
22.06 00:21:21 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:719)
22.06 00:21:21 [Server] [ERROR] net.md_5.bungee.chat.ComponentSerializer.toString(ComponentSerializer.java:79)
22.06 00:21:21 [Server] [ERROR] net.minecraft.network.protocol.game.ClientboundSystemChatPacket.improveBungeeComponentSerialization(ClientboundSystemChatPacket.java:33)
22.06 00:21:21 [Server] [ERROR] net.minecraft.network.protocol.game.ClientboundSystemChatPacket.<init>(ClientboundSystemChatPacket.java:17)
22.06 00:21:21 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.entity.CraftPlayer$2.sendMessage(CraftPlayer.java:3088)
22.06 00:21:21 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.entity.CraftPlayer$2.sendMessage(CraftPlayer.java:3076)
22.06 00:21:21 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.EffActionBar.execute(EffActionBar.java:70)
22.06 00:21:21 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Effect.run(Effect.java:50)
22.06 00:21:21 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:61)
22.06 00:21:21 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
22.06 00:21:21 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.Delay$1.run(Delay.java:109)
22.06 00:21:21 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
22.06 00:21:21 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
22.06 00:21:21 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1480)
22.06 00:21:21 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447)
22.06 00:21:21 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1394)
22.06 00:21:21 [Server] [ERROR] net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1171)
22.06 00:21:21 [Server] [ERROR] net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
22.06 00:21:21 [Server] [ERROR] net.minecraft.server.MinecraftServer$$Lambda$4665/0x0000000801a322d0.run(Unknown Source)
22.06 00:21:21 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:21 [Server] [ERROR] ------------------------------
22.06 00:21:21 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
22.06 00:21:21 [Server] [ERROR] ------------------------------
22.06 00:21:26 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH - git-Paper-32 (MC: 1.20.1) ---
22.06 00:21:26 [Server] [ERROR] The server has not responded for 45 seconds! Creating thread dump
22.06 00:21:26 [Server] [ERROR] ------------------------------
22.06 00:21:26 [Server] [ERROR] Server thread dump (Look for plugins here before reporting to Paper!):
22.06 00:21:26 [Server] [ERROR] ------------------------------
22.06 00:21:26 [Server] [ERROR] Current Thread: Server thread
22.06 00:21:26 [Server] [ERROR] PID: 40 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:26 [Server] [ERROR] Stack:
22.06 00:21:26 [Server] [ERROR] [email protected]/java.util.Collections$UnmodifiableCollection$1.hasNext(Collections.java:1053)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.registrations.Classes.toString(Classes.java:615)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.registrations.Classes.toString(Classes.java:648)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.registrations.Classes.toString(Classes.java:641)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.toString(VariableString.java:373)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getRaw(Variable.java:298)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.get(Variable.java:310)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getConverted(Variable.java:458)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getAll(Variable.java:680)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getArray(Variable.java:672)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.toString(VariableString.java:373)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.getSingle(VariableString.java:586)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.getSingle(VariableString.java:54)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.EffActionBar.execute(EffActionBar.java:66)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Effect.run(Effect.java:50)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:61)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
22.06 00:21:26 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.Delay$1.run(Delay.java:109)
22.06 00:21:26 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
22.06 00:21:26 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
22.06 00:21:26 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1480)
22.06 00:21:26 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447)
22.06 00:21:26 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1394)
22.06 00:21:26 [Server] [ERROR] net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1171)
22.06 00:21:26 [Server] [ERROR] net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
22.06 00:21:26 [Server] [ERROR] net.minecraft.server.MinecraftServer$$Lambda$4665/0x0000000801a322d0.run(Unknown Source)
22.06 00:21:26 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:26 [Server] [ERROR] ------------------------------
22.06 00:21:26 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
22.06 00:21:26 [Server] [ERROR] ------------------------------
22.06 00:21:31 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH - git-Paper-32 (MC: 1.20.1) ---
22.06 00:21:31 [Server] [ERROR] The server has not responded for 50 seconds! Creating thread dump
22.06 00:21:31 [Server] [ERROR] ------------------------------
22.06 00:21:31 [Server] [ERROR] Server thread dump (Look for plugins here before reporting to Paper!):
22.06 00:21:31 [Server] [ERROR] ------------------------------
22.06 00:21:31 [Server] [ERROR] Current Thread: Server thread
22.06 00:21:31 [Server] [ERROR] PID: 40 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:31 [Server] [ERROR] Stack:
22.06 00:21:31 [Server] [ERROR] [email protected]/java.util.Collections$UnmodifiableCollection$1.next(Collections.java:1054)
22.06 00:21:31 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.registrations.Classes.toString(Classes.java:615)
22.06 00:21:31 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.registrations.Classes.toString(Classes.java:648)
22.06 00:21:31 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.registrations.Classes.toString(Classes.java:641)
22.06 00:21:31 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.toString(VariableString.java:373)
22.06 00:21:31 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.getSingle(VariableString.java:586)
22.06 00:21:31 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.getSingle(VariableString.java:54)
22.06 00:21:31 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.EffActionBar.execute(EffActionBar.java:66)
22.06 00:21:31 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Effect.run(Effect.java:50)
22.06 00:21:31 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:61)
22.06 00:21:31 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
22.06 00:21:31 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.Delay$1.run(Delay.java:109)
22.06 00:21:31 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
22.06 00:21:31 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
22.06 00:21:31 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1480)
22.06 00:21:31 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447)
22.06 00:21:31 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1394)
22.06 00:21:31 [Server] [ERROR] net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1171)
22.06 00:21:31 [Server] [ERROR] net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
22.06 00:21:31 [Server] [ERROR] net.minecraft.server.MinecraftServer$$Lambda$4665/0x0000000801a322d0.run(Unknown Source)
22.06 00:21:31 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:31 [Server] [ERROR] ------------------------------
22.06 00:21:31 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
22.06 00:21:31 [Server] [ERROR] ------------------------------
22.06 00:21:36 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH - git-Paper-32 (MC: 1.20.1) ---
22.06 00:21:36 [Server] [ERROR] The server has not responded for 55 seconds! Creating thread dump
22.06 00:21:36 [Server] [ERROR] ------------------------------
22.06 00:21:36 [Server] [ERROR] Server thread dump (Look for plugins here before reporting to Paper!):
22.06 00:21:36 [Server] [ERROR] ------------------------------
22.06 00:21:36 [Server] [ERROR] Current Thread: Server thread
22.06 00:21:36 [Server] [ERROR] PID: 40 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:36 [Server] [ERROR] Stack:
22.06 00:21:36 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.entity.CraftEntity.isValid(CraftEntity.java:710)
22.06 00:21:36 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.convertIfOldPlayer(Variable.java:341)
22.06 00:21:36 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getRaw(Variable.java:301)
22.06 00:21:36 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.get(Variable.java:310)
22.06 00:21:36 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getConverted(Variable.java:458)
22.06 00:21:36 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getAll(Variable.java:680)
22.06 00:21:36 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getArray(Variable.java:672)
22.06 00:21:36 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.toString(VariableString.java:373)
22.06 00:21:36 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getRaw(Variable.java:298)
22.06 00:21:36 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.get(Variable.java:310)
22.06 00:21:36 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getConverted(Variable.java:458)
22.06 00:21:36 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getSingle(Variable.java:667)
22.06 00:21:36 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.expressions.ExprTimes.iterator(ExprTimes.java:99)
22.06 00:21:36 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.sections.SecLoop.walk(SecLoop.java:93)
22.06 00:21:36 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
22.06 00:21:36 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.Delay$1.run(Delay.java:109)
22.06 00:21:36 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
22.06 00:21:36 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
22.06 00:21:36 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1480)
22.06 00:21:36 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447)
22.06 00:21:36 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1394)
22.06 00:21:36 [Server] [ERROR] net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1171)
22.06 00:21:36 [Server] [ERROR] net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
22.06 00:21:36 [Server] [ERROR] net.minecraft.server.MinecraftServer$$Lambda$4665/0x0000000801a322d0.run(Unknown Source)
22.06 00:21:36 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:36 [Server] [ERROR] ------------------------------
22.06 00:21:36 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
22.06 00:21:36 [Server] [ERROR] ------------------------------
22.06 00:21:41 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH - git-Paper-32 (MC: 1.20.1) ---
22.06 00:21:41 [Server] [ERROR] The server has not responded for 60 seconds! Creating thread dump
22.06 00:21:41 [Server] [ERROR] ------------------------------
22.06 00:21:41 [Server] [ERROR] Server thread dump (Look for plugins here before reporting to Paper!):
22.06 00:21:41 [Server] [ERROR] ------------------------------
22.06 00:21:41 [Server] [ERROR] Current Thread: Server thread
22.06 00:21:41 [Server] [ERROR] PID: 40 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:41 [Server] [ERROR] Stack:
22.06 00:21:41 [Server] [ERROR] [email protected]/java.util.HashMap.getNode(HashMap.java:577)
22.06 00:21:41 [Server] [ERROR] [email protected]/java.util.HashMap.get(HashMap.java:556)
22.06 00:21:41 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.variables.VariablesMap.getVariable(VariablesMap.java:153)
22.06 00:21:41 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.variables.Variables.getVariable(Variables.java:343)
22.06 00:21:41 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getRaw(Variable.java:301)
22.06 00:21:41 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.get(Variable.java:310)
22.06 00:21:41 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getConverted(Variable.java:458)
22.06 00:21:41 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getAll(Variable.java:680)
22.06 00:21:41 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Variable.getArray(Variable.java:672)
22.06 00:21:41 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.toString(VariableString.java:373)
22.06 00:21:41 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.getSingle(VariableString.java:586)
22.06 00:21:41 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.VariableString.getSingle(VariableString.java:54)
22.06 00:21:41 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.EffActionBar.execute(EffActionBar.java:66)
22.06 00:21:41 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Effect.run(Effect.java:50)
22.06 00:21:41 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:61)
22.06 00:21:41 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
22.06 00:21:41 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.Delay$1.run(Delay.java:109)
22.06 00:21:41 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
22.06 00:21:41 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
22.06 00:21:41 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1480)
22.06 00:21:41 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447)
22.06 00:21:41 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1394)
22.06 00:21:41 [Server] [ERROR] net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1171)
22.06 00:21:41 [Server] [ERROR] net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
22.06 00:21:41 [Server] [ERROR] net.minecraft.server.MinecraftServer$$Lambda$4665/0x0000000801a322d0.run(Unknown Source)
22.06 00:21:41 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:41 [Server] [ERROR] ------------------------------
22.06 00:21:41 [Server] [ERROR] --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
22.06 00:21:41 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] The server has stopped responding! This is (probably) not a Paper bug.
22.06 00:21:42 [Server] [ERROR] If you see a plugin in the Server thread dump below, then please report it to that author
22.06 00:21:42 [Server] [ERROR] *Especially* if it looks like HTTP or MySQL operations are occurring
22.06 00:21:42 [Server] [ERROR] If you see a world save or edit, then it means you did far more than your server can handle at once
22.06 00:21:42 [Server] [ERROR] If this is the case, consider increasing timeout-time in spigot.yml but note that this will replace the crash with LARGE lag spikes
22.06 00:21:42 [Server] [ERROR] If you are unsure or still think this is a Paper bug, please report this to https://github.com/PaperMC/Paper/issues
22.06 00:21:42 [Server] [ERROR] Be sure to include ALL relevant console errors and Minecraft crash reports
22.06 00:21:42 [Server] [ERROR] Paper version: git-Paper-32 (MC: 1.20.1)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Server thread dump (Look for plugins here before reporting to Paper!):
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Server thread
22.06 00:21:42 [Server] [ERROR] PID: 40 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.LinkedTreeMap.find(LinkedTreeMap.java:172)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.LinkedTreeMap.put(LinkedTreeMap.java:116)
22.06 00:21:42 [Server] [ERROR] com.google.gson.JsonObject.add(JsonObject.java:69)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.JsonTreeWriter.put(JsonTreeWriter.java:80)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.JsonTreeWriter.value(JsonTreeWriter.java:150)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.TypeAdapters$28.write(TypeAdapters.java:832)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.TypeAdapters$28.write(TypeAdapters.java:846)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.TypeAdapters$28.write(TypeAdapters.java:725)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.Streams.write(Streams.java:73)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.TreeTypeAdapter.write(TreeTypeAdapter.java:89)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.write(TypeAdapterRuntimeTypeWrapper.java:70)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.write(CollectionTypeAdapterFactory.java:97)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.write(CollectionTypeAdapterFactory.java:61)
22.06 00:21:42 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:825)
22.06 00:21:42 [Server] [ERROR] com.google.gson.Gson.toJsonTree(Gson.java:695)
22.06 00:21:42 [Server] [ERROR] com.google.gson.Gson.toJsonTree(Gson.java:672)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl.serialize(TreeTypeAdapter.java:172)
22.06 00:21:42 [Server] [ERROR] net.md_5.bungee.chat.BaseComponentSerializer.serialize(BaseComponentSerializer.java:197)
22.06 00:21:42 [Server] [ERROR] net.md_5.bungee.chat.TextComponentSerializer.serialize(TextComponentSerializer.java:34)
22.06 00:21:42 [Server] [ERROR] net.md_5.bungee.chat.TextComponentSerializer.serialize(TextComponentSerializer.java:13)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.TreeTypeAdapter.write(TreeTypeAdapter.java:88)
22.06 00:21:42 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:825)
22.06 00:21:42 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:795)
22.06 00:21:42 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:742)
22.06 00:21:42 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:719)
22.06 00:21:42 [Server] [ERROR] net.md_5.bungee.chat.ComponentSerializer.toString(ComponentSerializer.java:79)
22.06 00:21:42 [Server] [ERROR] net.minecraft.network.protocol.game.ClientboundSystemChatPacket.improveBungeeComponentSerialization(ClientboundSystemChatPacket.java:33)
22.06 00:21:42 [Server] [ERROR] net.minecraft.network.protocol.game.ClientboundSystemChatPacket.<init>(ClientboundSystemChatPacket.java:17)
22.06 00:21:42 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.entity.CraftPlayer$2.sendMessage(CraftPlayer.java:3088)
22.06 00:21:42 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.entity.CraftPlayer$2.sendMessage(CraftPlayer.java:3076)
22.06 00:21:42 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.EffActionBar.execute(EffActionBar.java:70)
22.06 00:21:42 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Effect.run(Effect.java:50)
22.06 00:21:42 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:61)
22.06 00:21:42 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
22.06 00:21:42 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.Delay$1.run(Delay.java:109)
22.06 00:21:42 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
22.06 00:21:42 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
22.06 00:21:42 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1480)
22.06 00:21:42 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447)
22.06 00:21:42 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1394)
22.06 00:21:42 [Server] [ERROR] net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1171)
22.06 00:21:42 [Server] [ERROR] net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
22.06 00:21:42 [Server] [ERROR] net.minecraft.server.MinecraftServer$$Lambda$4665/0x0000000801a322d0.run(Unknown Source)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Entire Thread Dump:
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Reference Handler
22.06 00:21:42 [Server] [ERROR] PID: 2 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.ref.Reference.waitForReferencePendingList(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.ref.Reference.processPendingReferences(Reference.java:253)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.ref.Reference$ReferenceHandler.run(Reference.java:215)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Finalizer
22.06 00:21:42 [Server] [ERROR] PID: 3 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Object.wait(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:176)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:172)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Signal Dispatcher
22.06 00:21:42 [Server] [ERROR] PID: 4 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Notification Thread
22.06 00:21:42 [Server] [ERROR] PID: 20 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Common-Cleaner
22.06 00:21:42 [Server] [ERROR] PID: 21 | Suspended: false | Native: false | State: TIMED_WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Object.wait(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155)
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.ref.CleanerImpl.run(CleanerImpl.java:140)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.InnocuousThread.run(InnocuousThread.java:162)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: DestroyJavaVM
22.06 00:21:42 [Server] [ERROR] PID: 23 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Log4j2-AsyncAppenderEventDispatcher-1-Async
22.06 00:21:42 [Server] [ERROR] PID: 27 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:42 [Server] [ERROR] Thread is waiting on monitor(s):
22.06 00:21:42 [Server] [ERROR] Locked on:org.apache.logging.log4j.core.appender.rolling.RollingRandomAccessFileManager.writeToDestination(RollingRandomAccessFileManager.java:144)
22.06 00:21:42 [Server] [ERROR] Locked on:org.apache.logging.log4j.core.appender.OutputStreamManager.flushBuffer(OutputStreamManager.java:283)
22.06 00:21:42 [Server] [ERROR] Locked on:org.apache.logging.log4j.core.appender.rolling.RollingRandomAccessFileManager.flush(RollingRandomAccessFileManager.java:173)
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/java.io.RandomAccessFile.writeBytes(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.io.RandomAccessFile.write(RandomAccessFile.java:558)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.appender.rolling.RollingRandomAccessFileManager.writeToDestination(RollingRandomAccessFileManager.java:144)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.appender.OutputStreamManager.flushBuffer(OutputStreamManager.java:283)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.appender.rolling.RollingRandomAccessFileManager.flush(RollingRandomAccessFileManager.java:173)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.appender.AbstractOutputStreamAppender.directEncodeEvent(AbstractOutputStreamAppender.java:217)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.appender.AbstractOutputStreamAppender.tryAppend(AbstractOutputStreamAppender.java:208)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.appender.AbstractOutputStreamAppender.append(AbstractOutputStreamAppender.java:199)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.appender.RollingRandomAccessFileAppender.append(RollingRandomAccessFileAppender.java:243)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.config.AppenderControl.tryCallAppender(AppenderControl.java:161)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.config.AppenderControl.callAppender0(AppenderControl.java:134)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.config.AppenderControl.callAppenderPreventRecursion(AppenderControl.java:125)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.config.AppenderControl.callAppender(AppenderControl.java:89)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.appender.rewrite.RewriteAppender.append(RewriteAppender.java:84)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.config.AppenderControl.tryCallAppender(AppenderControl.java:161)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.config.AppenderControl.callAppender0(AppenderControl.java:134)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.config.AppenderControl.callAppenderPreventRecursion(AppenderControl.java:125)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.config.AppenderControl.callAppender(AppenderControl.java:89)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.appender.rewrite.RewriteAppender.append(RewriteAppender.java:84)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.config.AppenderControl.tryCallAppender(AppenderControl.java:161)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.config.AppenderControl.callAppender0(AppenderControl.java:134)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.config.AppenderControl.callAppenderPreventRecursion(AppenderControl.java:125)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.config.AppenderControl.callAppender(AppenderControl.java:89)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.appender.AsyncAppenderEventDispatcher.dispatch(AsyncAppenderEventDispatcher.java:130)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.appender.AsyncAppenderEventDispatcher.dispatchAll(AsyncAppenderEventDispatcher.java:92)
22.06 00:21:42 [Server] [ERROR] org.apache.logging.log4j.core.appender.AsyncAppenderEventDispatcher.run(AsyncAppenderEventDispatcher.java:74)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: JNA Cleaner
22.06 00:21:42 [Server] [ERROR] PID: 29 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Object.wait(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:176)
22.06 00:21:42 [Server] [ERROR] com.sun.jna.internal.Cleaner$1.run(Cleaner.java:58)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Timer hack thread
22.06 00:21:42 [Server] [ERROR] PID: 30 | Suspended: false | Native: false | State: TIMED_WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Thread.sleep(Native Method)
22.06 00:21:42 [Server] [ERROR] net.minecraft.Util$7.run(Util.java:712)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Yggdrasil Key Fetcher
22.06 00:21:42 [Server] [ERROR] PID: 31 | Suspended: false | Native: false | State: TIMED_WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1672)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Worker-Main-1
22.06 00:21:42 [Server] [ERROR] PID: 34 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3463)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3434)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Worker-Main-2
22.06 00:21:42 [Server] [ERROR] PID: 35 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3463)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3434)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Worker-Main-3
22.06 00:21:42 [Server] [ERROR] PID: 36 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3463)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3434)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Worker-Main-4
22.06 00:21:42 [Server] [ERROR] PID: 37 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3463)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3434)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Worker-Main-5
22.06 00:21:42 [Server] [ERROR] PID: 38 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3463)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3434)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Worker-Main-6
22.06 00:21:42 [Server] [ERROR] PID: 39 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3463)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3434)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Server thread
22.06 00:21:42 [Server] [ERROR] PID: 40 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.System.identityHashCode(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.IdentityHashMap.hash(IdentityHashMap.java:299)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.IdentityHashMap.containsKey(IdentityHashMap.java:357)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.Collections$SetFromMap.contains(Collections.java:5683)
22.06 00:21:42 [Server] [ERROR] net.md_5.bungee.chat.BaseComponentSerializer.serialize(BaseComponentSerializer.java:137)
22.06 00:21:42 [Server] [ERROR] net.md_5.bungee.chat.TextComponentSerializer.serialize(TextComponentSerializer.java:34)
22.06 00:21:42 [Server] [ERROR] net.md_5.bungee.chat.TextComponentSerializer.serialize(TextComponentSerializer.java:13)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.TreeTypeAdapter.write(TreeTypeAdapter.java:88)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.write(TypeAdapterRuntimeTypeWrapper.java:70)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.write(CollectionTypeAdapterFactory.java:97)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.write(CollectionTypeAdapterFactory.java:61)
22.06 00:21:42 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:825)
22.06 00:21:42 [Server] [ERROR] com.google.gson.Gson.toJsonTree(Gson.java:695)
22.06 00:21:42 [Server] [ERROR] com.google.gson.Gson.toJsonTree(Gson.java:672)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl.serialize(TreeTypeAdapter.java:172)
22.06 00:21:42 [Server] [ERROR] net.md_5.bungee.chat.BaseComponentSerializer.serialize(BaseComponentSerializer.java:197)
22.06 00:21:42 [Server] [ERROR] net.md_5.bungee.chat.TextComponentSerializer.serialize(TextComponentSerializer.java:34)
22.06 00:21:42 [Server] [ERROR] net.md_5.bungee.chat.TextComponentSerializer.serialize(TextComponentSerializer.java:13)
22.06 00:21:42 [Server] [ERROR] com.google.gson.internal.bind.TreeTypeAdapter.write(TreeTypeAdapter.java:88)
22.06 00:21:42 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:825)
22.06 00:21:42 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:795)
22.06 00:21:42 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:742)
22.06 00:21:42 [Server] [ERROR] com.google.gson.Gson.toJson(Gson.java:719)
22.06 00:21:42 [Server] [ERROR] net.md_5.bungee.chat.ComponentSerializer.toString(ComponentSerializer.java:79)
22.06 00:21:42 [Server] [ERROR] net.minecraft.network.protocol.game.ClientboundSystemChatPacket.improveBungeeComponentSerialization(ClientboundSystemChatPacket.java:33)
22.06 00:21:42 [Server] [ERROR] net.minecraft.network.protocol.game.ClientboundSystemChatPacket.<init>(ClientboundSystemChatPacket.java:17)
22.06 00:21:42 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.entity.CraftPlayer$2.sendMessage(CraftPlayer.java:3088)
22.06 00:21:42 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.entity.CraftPlayer$2.sendMessage(CraftPlayer.java:3076)
22.06 00:21:42 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.EffActionBar.execute(EffActionBar.java:70)
22.06 00:21:42 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.Effect.run(Effect.java:50)
22.06 00:21:42 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:61)
22.06 00:21:42 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
22.06 00:21:42 [Server] [ERROR] Skript-2.6.4.jar//ch.njol.skript.effects.Delay$1.run(Delay.java:109)
22.06 00:21:42 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
22.06 00:21:42 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
22.06 00:21:42 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1480)
22.06 00:21:42 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447)
22.06 00:21:42 [Server] [ERROR] net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1394)
22.06 00:21:42 [Server] [ERROR] net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1171)
22.06 00:21:42 [Server] [ERROR] net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
22.06 00:21:42 [Server] [ERROR] net.minecraft.server.MinecraftServer$$Lambda$4665/0x0000000801a322d0.run(Unknown Source)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Java2D Disposer
22.06 00:21:42 [Server] [ERROR] PID: 47 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Object.wait(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:176)
22.06 00:21:42 [Server] [ERROR] [email protected]/sun.java2d.Disposer.run(Disposer.java:145)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: RegionFile I/O Thread #0
22.06 00:21:42 [Server] [ERROR] PID: 49 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:211)
22.06 00:21:42 [Server] [ERROR] ca.spottedleaf.concurrentutil.executor.standard.PrioritisedQueueExecutorThread.run(PrioritisedQueueExecutorThread.java:97)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Tuinity Chunk System Worker #0
22.06 00:21:42 [Server] [ERROR] PID: 50 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:211)
22.06 00:21:42 [Server] [ERROR] ca.spottedleaf.concurrentutil.executor.standard.PrioritisedQueueExecutorThread.run(PrioritisedQueueExecutorThread.java:97)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Tuinity Chunk System Worker #1
22.06 00:21:42 [Server] [ERROR] PID: 51 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:211)
22.06 00:21:42 [Server] [ERROR] ca.spottedleaf.concurrentutil.executor.standard.PrioritisedQueueExecutorThread.run(PrioritisedQueueExecutorThread.java:97)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Tuinity Chunk System Worker #2
22.06 00:21:42 [Server] [ERROR] PID: 52 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:211)
22.06 00:21:42 [Server] [ERROR] ca.spottedleaf.concurrentutil.executor.standard.PrioritisedQueueExecutorThread.run(PrioritisedQueueExecutorThread.java:97)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Tuinity Chunk System Worker #3
22.06 00:21:42 [Server] [ERROR] PID: 53 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:211)
22.06 00:21:42 [Server] [ERROR] ca.spottedleaf.concurrentutil.executor.standard.PrioritisedQueueExecutorThread.run(PrioritisedQueueExecutorThread.java:97)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Paper Watchdog Thread
22.06 00:21:42 [Server] [ERROR] PID: 54 | Suspended: false | Native: false | State: RUNNABLE
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/sun.management.ThreadImpl.dumpThreads0(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/sun.management.ThreadImpl.dumpAllThreads(ThreadImpl.java:521)
22.06 00:21:42 [Server] [ERROR] [email protected]/sun.management.ThreadImpl.dumpAllThreads(ThreadImpl.java:509)
22.06 00:21:42 [Server] [ERROR] org.spigotmc.WatchdogThread.run(WatchdogThread.java:203)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Server console handler
22.06 00:21:42 [Server] [ERROR] PID: 42 | Suspended: false | Native: true | State: RUNNABLE
22.06 00:21:42 [Server] [ERROR] Thread is waiting on monitor(s):
22.06 00:21:42 [Server] [ERROR] Locked on:[email protected]/java.io.BufferedInputStream.read(BufferedInputStream.java:343)
22.06 00:21:42 [Server] [ERROR] Locked on:[email protected]/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:188)
22.06 00:21:42 [Server] [ERROR] Locked on:[email protected]/java.io.BufferedReader.readLine(BufferedReader.java:329)
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/java.io.FileInputStream.readBytes(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.io.FileInputStream.read(FileInputStream.java:276)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.io.BufferedInputStream.read1(BufferedInputStream.java:282)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.io.BufferedInputStream.read(BufferedInputStream.java:343)
22.06 00:21:42 [Server] [ERROR] [email protected]/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:270)
22.06 00:21:42 [Server] [ERROR] [email protected]/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:313)
22.06 00:21:42 [Server] [ERROR] [email protected]/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:188)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.io.InputStreamReader.read(InputStreamReader.java:177)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.io.BufferedReader.fill(BufferedReader.java:162)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.io.BufferedReader.readLine(BufferedReader.java:329)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.io.BufferedReader.readLine(BufferedReader.java:396)
22.06 00:21:42 [Server] [ERROR] net.minecrell.terminalconsole.SimpleTerminalConsole.readCommands(SimpleTerminalConsole.java:180)
22.06 00:21:42 [Server] [ERROR] net.minecrell.terminalconsole.SimpleTerminalConsole.start(SimpleTerminalConsole.java:143)
22.06 00:21:42 [Server] [ERROR] net.minecraft.server.dedicated.DedicatedServer$1.run(DedicatedServer.java:102)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: pool-8-thread-1
22.06 00:21:42 [Server] [ERROR] PID: 55 | Suspended: false | Native: false | State: TIMED_WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1672)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: Netty Epoll Server IO #0
22.06 00:21:42 [Server] [ERROR] PID: 59 | Suspended: false | Native: true | State: RUNNABLE
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] io.netty.channel.epoll.Native.epollWait(Native Method)
22.06 00:21:42 [Server] [ERROR] io.netty.channel.epoll.Native.epollWait(Native.java:209)
22.06 00:21:42 [Server] [ERROR] io.netty.channel.epoll.Native.epollWait(Native.java:202)
22.06 00:21:42 [Server] [ERROR] io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange(EpollEventLoop.java:306)
22.06 00:21:42 [Server] [ERROR] io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:363)
22.06 00:21:42 [Server] [ERROR] io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
22.06 00:21:42 [Server] [ERROR] io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: luckperms-worker-0
22.06 00:21:42 [Server] [ERROR] PID: 61 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1724)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: luckperms-worker-1
22.06 00:21:42 [Server] [ERROR] PID: 62 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1724)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: luckperms-worker-2
22.06 00:21:42 [Server] [ERROR] PID: 63 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.compensatedBlock(ForkJoinPool.java:3449)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3432)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.LinkedBlockingDeque.takeFirst(LinkedBlockingDeque.java:485)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.LinkedBlockingDeque.take(LinkedBlockingDeque.java:673)
22.06 00:21:42 [Server] [ERROR] [email protected]/sun.nio.fs.AbstractWatchService.take(AbstractWatchService.java:118)
22.06 00:21:42 [Server] [ERROR] me.lucko.luckperms.common.storage.implementation.file.watcher.AbstractFileWatcher.runEventProcessingLoop(AbstractFileWatcher.java:128)
22.06 00:21:42 [Server] [ERROR] me.lucko.luckperms.common.storage.implementation.file.watcher.FileWatcher.lambda$new$0(FileWatcher.java:60)
22.06 00:21:42 [Server] [ERROR] me.lucko.luckperms.common.storage.implementation.file.watcher.FileWatcher$$Lambda$6744/0x000000080229fc08.run(Unknown Source)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1395)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: luckperms-worker-3
22.06 00:21:42 [Server] [ERROR] PID: 64 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1724)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: luckperms-worker-4
22.06 00:21:42 [Server] [ERROR] PID: 65 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1724)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: luckperms-worker-5
22.06 00:21:42 [Server] [ERROR] PID: 66 | Suspended: false | Native: false | State: TIMED_WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.parkUntil(LockSupport.java:410)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1726)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: luckperms-worker-6
22.06 00:21:42 [Server] [ERROR] PID: 67 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1724)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: luckperms-worker-7
22.06 00:21:42 [Server] [ERROR] PID: 68 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1724)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: luckperms-worker-8
22.06 00:21:42 [Server] [ERROR] PID: 69 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1724)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: luckperms-worker-9
22.06 00:21:42 [Server] [ERROR] PID: 70 | Suspended: false | Native: false | State: WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:42 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1724)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1623)
22.06 00:21:42 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
22.06 00:21:42 [Server] [ERROR] ------------------------------
22.06 00:21:42 [Server] [ERROR] Current Thread: luckperms-scheduler
22.06 00:21:42 [Server] [ERROR] PID: 71 | Suspended: false | Native: false | State: TIMED_WAITING
22.06 00:21:42 [Server] [ERROR] Stack:
22.06 00:21:43 [PebbleHost] Skipped 676 lines due to rate limit (500/s)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3463)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3434)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1623)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:43 [Server] [ERROR] ------------------------------
22.06 00:21:43 [Server] [ERROR] Current Thread: Async Chat Thread - #1
22.06 00:21:43 [Server] [ERROR] PID: 189 | Suspended: false | Native: false | State: WAITING
22.06 00:21:43 [Server] [ERROR] Stack:
22.06 00:21:43 [Server] [ERROR] [email protected]/java.lang.Object.wait(Native Method)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.lang.Object.wait(Object.java:338)
22.06 00:21:43 [Server] [ERROR] org.bukkit.craftbukkit.v1_20_R1.util.Waitable.get(Waitable.java:38)
22.06 00:21:43 [Server] [ERROR] io.papermc.paper.adventure.ChatProcessor.queueIfAsyncOrRunImmediately(ChatProcessor.java:405)
22.06 00:21:43 [Server] [ERROR] io.papermc.paper.adventure.ChatProcessor.process(ChatProcessor.java:104)
22.06 00:21:43 [Server] [ERROR] net.minecraft.server.network.ServerGamePacketListenerImpl.chat(ServerGamePacketListenerImpl.java:2403)
22.06 00:21:43 [Server] [ERROR] net.minecraft.server.network.ServerGamePacketListenerImpl.broadcastChatMessage(ServerGamePacketListenerImpl.java:2559)
22.06 00:21:43 [Server] [ERROR] net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChat$17(ServerGamePacketListenerImpl.java:2232)
22.06 00:21:43 [Server] [ERROR] net.minecraft.server.network.PlayerConnection$$Lambda$11141/0x0000000803144730.accept(Unknown Source)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.lang.Thread.run(Thread.java:833)
22.06 00:21:43 [Server] [ERROR] ------------------------------
22.06 00:21:43 [Server] [ERROR] Current Thread: ForkJoinPool-3-worker-2
22.06 00:21:43 [Server] [ERROR] PID: 190 | Suspended: false | Native: false | State: TIMED_WAITING
22.06 00:21:43 [Server] [ERROR] Stack:
22.06 00:21:43 [Server] [ERROR] [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.locks.LockSupport.parkUntil(LockSupport.java:410)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1726)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1623)
22.06 00:21:43 [Server] [ERROR] [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
22.06 00:21:43 [Server] [ERROR] ------------------------------
22.06 00:21:43 [Server] [INFO] Stopping server
22.06 00:21:43 [Server] [INFO] [PlugManX] Disabling PlugManX v2.3.3
22.06 00:21:43 [Server] [INFO] [skRayFall] Disabling skRayFall v1.9.23
22.06 00:21:43 [Server] [INFO] [skRayFall] Bacon has been eaten. Make some more soon!
22.06 00:21:43 [Server] [INFO] [CitizensCMD] Disabling CitizensCMD v2.6.12
22.06 00:21:43 [Server] [INFO] [skript-bossbar] Disabling skript-bossbar v1.0
22.06 00:21:43 [Server] [INFO] [TreeAssist] Disabling TreeAssist v7.3.41
22.06 00:21:43 [Server] [INFO] [CustomStructures] Disabling CustomStructures v1.9.0.1