Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skript error #6938

Closed
1 task done
Minecradt opened this issue Jul 24, 2024 · 13 comments
Closed
1 task done

Skript error #6938

Minecradt opened this issue Jul 24, 2024 · 13 comments
Labels
bug An issue that needs to be fixed. Alternatively, a PR fixing an issue. completed The issue has been fully resolved and the change will be in the next Skript update. priority: medium Issues that are detrimental to user experience (prohibitive bugs or lack of useful implementation).

Comments

@Minecradt
Copy link

Skript/Server Version

[10:30:10] [Server thread/INFO]: [Skript] Skript's aliases can be found here: https://github.com/SkriptLang/skript-aliases
[10:30:10] [Server thread/INFO]: [Skript] Skript's documentation can be found here: https://docs.skriptlang.org/
[10:30:10] [Server thread/INFO]: [Skript] Skript's tutorials can be found here: https://docs.skriptlang.org/tutorials
[10:30:10] [Server thread/INFO]: [Skript] Server Version: 4090-Spigot-b754dcc-38b1f49 (MC: 1.20.4)
[10:30:10] [Server thread/INFO]: [Skript] Skript Version: 2.9.0 (skriptlang-github)
[10:30:10] [Server thread/INFO]: [Skript] Installed Skript Addons: None
[10:30:10] [Server thread/INFO]: [Skript] Installed dependencies: None

Bug Description

It is a bug about the on player move event.

Expected Behavior

It was meant to be able to set homes and tp and detect player movement

Steps to Reproduce

Create this script.
command /sethome:
trigger:
set {home::%player's uuid%} to location of player
command /home:
trigger:
message "You will be teleported in 5 seconds..."
wait 20 ticks
message "You will be teleported in 4 seconds..."
wait 20 ticks
message "You will be teleported in 3 seconds..."
wait 20 ticks
message "You will be teleported in 2 seconds..."
wait 20 ticks
message "You will be teleported in 1 second..."
on player move:
message player

then reload the skript and look in console.

Errors or Screenshots

[10:27:28] [Server thread/INFO]: soccer1992 issued server command: /sk reload hello.sk
[10:27:28] [Server thread/ERROR]: #!#!
[10:27:28] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[10:27:28] [Server thread/ERROR]: #!#! Could not load hello.sk
[10:27:28] [Server thread/ERROR]: #!#!
[10:27:28] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[10:27:28] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[10:27:28] [Server thread/ERROR]: #!#! You should report it at https://github.com/SkriptLang/Skript/issues. Please copy paste this report there (or use paste service).
[10:27:28] [Server thread/ERROR]: #!#! This ensures that your issue is noticed and will be fixed as soon as possible.
[10:27:28] [Server thread/ERROR]: #!#!
[10:27:28] [Server thread/ERROR]: #!#! Stack trace:
[10:27:28] [Server thread/ERROR]: #!#! java.lang.NullPointerException: Cannot read the array length because "" is null
[10:27:28] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptEvent.init(SkriptEvent.java:90)
[10:27:28] [Server thread/ERROR]: #!#! at org.skriptlang.skript.lang.structure.Structure.init(Structure.java:131)
[10:27:28] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:259)
[10:27:28] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parseStatic(SkriptParser.java:207)
[10:27:28] [Server thread/ERROR]: #!#! at org.skriptlang.skript.lang.structure.Structure.parse(Structure.java:217)
[10:27:28] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptEvent.parse(SkriptEvent.java:284)
[10:27:28] [Server thread/ERROR]: #!#! at ch.njol.skript.structures.StructEvent.init(StructEvent.java:69)
[10:27:28] [Server thread/ERROR]: #!#! at org.skriptlang.skript.lang.structure.Structure.init(Structure.java:131)
[10:27:28] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:259)
[10:27:28] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parseStatic(SkriptParser.java:207)
[10:27:28] [Server thread/ERROR]: #!#! at org.skriptlang.skript.lang.structure.Structure.parse(Structure.java:217)
[10:27:28] [Server thread/ERROR]: #!#! at org.skriptlang.skript.lang.structure.Structure.parse(Structure.java:200)
[10:27:28] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:675)
[10:27:28] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.lambda$loadScripts$3(ScriptLoader.java:503)
[10:27:28] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:424)
[10:27:28] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:440)
[10:27:28] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:502)
[10:27:28] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:459)
[10:27:28] [Server thread/ERROR]: #!#! at ch.njol.skript.SkriptCommand.onCommand(SkriptCommand.java:190)
[10:27:28] [Server thread/ERROR]: #!#! at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[10:27:28] [Server thread/ERROR]: #!#! at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:149)
[10:27:28] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_20_R3.CraftServer.dispatchCommand(CraftServer.java:887)
[10:27:28] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_20_R3.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:50)
[10:27:28] [Server thread/ERROR]: #!#! at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.commands.execution.tasks.ExecuteCommand.a(SourceFile:29)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(SourceFile:13)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.commands.execution.UnboundEntryAction.a(SourceFile:8)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.commands.execution.CommandQueueEntry.a(SourceFile:8)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.commands.execution.ExecutionContext.a(SourceFile:107)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:413)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:335)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:322)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:1856)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.server.network.PlayerConnection.lambda$15(PlayerConnection.java:1818)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.b(SourceFile:67)
[10:27:28] [Server thread/ERROR]: #!#! at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.server.TickTask.run(SourceFile:18)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:156)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1191)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:1)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.x(SourceFile:130)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.bl(MinecraftServer.java:1170)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1163)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:139)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.w_(MinecraftServer.java:1147)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1060)
[10:27:28] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[10:27:28] [Server thread/ERROR]: #!#! at java.base/java.lang.Thread.run(Thread.java:833)
[10:27:28] [Server thread/ERROR]: #!#!
[10:27:28] [Server thread/ERROR]: #!#! Version Information:
[10:27:28] [Server thread/ERROR]: #!#! Skript: 2.9.0 (latest)
[10:27:28] [Server thread/ERROR]: #!#! Flavor: skriptlang-github
[10:27:28] [Server thread/ERROR]: #!#! Date: 16:01:35.354421100
[10:27:28] [Server thread/ERROR]: #!#! Bukkit: 1.20.4-R0.1-SNAPSHOT
[10:27:28] [Server thread/ERROR]: #!#! Minecraft: 1.20.4
[10:27:28] [Server thread/ERROR]: #!#! Java: 17.0.4 (Java HotSpot(TM) 64-Bit Server VM 17.0.4+11-LTS-179)
[10:27:28] [Server thread/ERROR]: #!#! OS: Windows 11 amd64 10.0
[10:27:28] [Server thread/ERROR]: #!#!
[10:27:28] [Server thread/ERROR]: #!#! Server platform: Spigot
[10:27:28] [Server thread/ERROR]: #!#!
[10:27:28] [Server thread/ERROR]: #!#! Current node: on player move: (hello.sk, line 15)
[10:27:28] [Server thread/ERROR]: #!#! Current item: null
[10:27:28] [Server thread/ERROR]: #!#!
[10:27:28] [Server thread/ERROR]: #!#! Thread: Server thread
[10:27:28] [Server thread/ERROR]: #!#!
[10:27:28] [Server thread/ERROR]: #!#! Language: english
[10:27:28] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[10:27:28] [Server thread/ERROR]: #!#!
[10:27:28] [Server thread/ERROR]: #!#! End of Error.
[10:27:28] [Server thread/ERROR]: #!#!

Other

No response

Agreement

  • I have read the guidelines above and affirm I am following them with this report.
@APickledWalrus
Copy link
Member

Are you getting any other errors when Skript starts up?

@jorisdigitalREAL
Copy link

I have the same problem

@APickledWalrus
Copy link
Member

I have the same problem

Do you have any errors on startup? Can you provide your startup log?

@jorisdigitalREAL
Copy link

I have the same problem

Do you have any errors on startup? Can you provide your startup log?

Of course!

I don't have a Skript error. However, what's strange is the fact that Skript loads all scripts upon startup. But that's not quite true: the scripts do not work. It's as if they are not in the scripts/ folder.

Here is a log file from the startup process:

[07:02:05] [Server thread/INFO]: [Skript] Enabling Skript v2.9.0
[07:02:06] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] Auf diesem Server läuft die neueste Version von Skript.
[07:02:11] [Server thread/INFO]: [Skript] Loaded 233074 aliases in 5646ms
[07:02:12] [Server thread/INFO]: [Skript] ~ erstellt von & © Peter Güttinger alias Njol ~
[07:02:12] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[07:02:12] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[07:02:12] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.3
[07:02:12] [Server thread/INFO]: [Multiverse-Portals] 0 - Portals(s) loaded
[07:02:12] [Server thread/INFO]: [Multiverse-Portals] Found WorldEdit. Using it for selections.
[07:02:12] [Server thread/INFO]: [Multiverse-Portals 4.2.3] Enabled - By Rigby and fernferret
[07:02:12] [Server thread/INFO]: [SkBee] Enabling SkBee v3.5.7
[07:02:12] [Server thread/INFO]: [SkBee] Loading NBTApi...
[07:02:12] [Server thread/INFO]: [SkBee] [NBTAPI] Found Minecraft: 1.21! Trying to find NMS support
[07:02:12] [Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[07:02:12] [Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[07:02:13] [Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Damage Source elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Display Entity elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Fishing elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] RayTrace elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Scoreboard Objective Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Minecraft Tag elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Team Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Tick Manager elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[07:02:13] [Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[07:02:13] [Server thread/INFO]: [SkBee] Chunk Generator Elements disabled via config
[07:02:13] [Server thread/INFO]: [SkBee] Loaded (401) elements:
[07:02:13] [Server thread/INFO]: [SkBee] - 55 events
[07:02:13] [Server thread/INFO]: [SkBee] - 64 effects
[07:02:13] [Server thread/INFO]: [SkBee] - 244 expressions
[07:02:13] [Server thread/INFO]: [SkBee] - 27 conditions
[07:02:13] [Server thread/INFO]: [SkBee] - 11 sections
[07:02:13] [Server thread/INFO]: [SkBee] Checking for update...
[07:02:13] [Server thread/INFO]: [SkBee] Plugin is up to date!
[07:02:13] [Server thread/INFO]: [SkBee] Successfully enabled v3.5.7 in 0.73 seconds
[07:02:13] [Server thread/INFO]: [skUtilities] Enabling skUtilities v0.9.2*
[07:02:13] [Server thread/INFO]: [skUtilities] v0.9.2: loaded modules (Conversions, Files, Yaml, Urls, Utilities) in 70ms
[07:02:13] [Server thread/INFO]: [ServersNPC] Enabling ServersNPC v4.7
[07:02:13] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
[07:02:13] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[07:02:13] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[07:02:13] [Server thread/INFO]: [Essentials] No kits found to migrate.
[07:02:14] [Server thread/INFO]: [Essentials] Loaded 39094 items from items.json.
[07:02:14] [Server thread/INFO]: [Essentials] Using locale en_US
[07:02:14] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[07:02:14] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[07:02:14] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[07:02:14] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[07:02:14] [Server thread/INFO]: [skript-yaml] Enabling skript-yaml v1.5
[07:02:14] [Server thread/INFO]: [skript-teams] Enabling skript-teams v1.0
[07:02:14] [Server thread/INFO]: [skript-teams] has been enabled!

[...]

[07:02:17] [Server thread/INFO]: [Skript] Loading variables...
[07:02:17] [Server thread/INFO]: [Skript] Loaded 383 variables in 0.0 seconds
[07:02:17] [Server thread/INFO]: [Skript] Linie 9: (smp/claim/cancel-event.sk)
[07:02:17] [Server thread/INFO]: Can't understand this structure: on any move
[07:02:17] [Server thread/INFO]: Linie: on any move:
[07:02:17] [Server thread/INFO]:
[07:02:18] [Server thread/INFO]: [Skript] Linie 7: (global_sync_TEMP/sync_scripts/utils/bungeesystem/commands.sk)
[07:02:18] [Server thread/INFO]: Can't understand this condition/effect: send uptime of server
[07:02:18] [Server thread/INFO]: Linie: send uptime of server
[07:02:18] [Server thread/INFO]:
[07:02:18] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[07:02:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[07:02:18] [Server thread/INFO]: 1 placeholder hook(s) registered!
[07:02:18] [Server thread/INFO]: Done (31.863s)! For help, type "help"
[07:02:18] [Server thread/INFO]: Timings Reset

This is the relevant part of the log file. There are no errors relating to Skript in the entire log.

@EdoEquin0x
Copy link

EdoEquin0x commented Jul 26, 2024

Can confirm the "on player move" cause the error of the original post on my server too, I am on 1.20.1
Update: It seems that this whole event is screwed, "on entity move" also cause the same error

@APickledWalrus
Copy link
Member

Are you guys using Paper or Spigot? I think I see what's going on here

@EdoEquin0x
Copy link

Sorry, should've added that info earlier: I use Spigot, if that can help

@jorisdigitalREAL
Copy link

jorisdigitalREAL commented Jul 26, 2024

Are you guys using Paper or Spigot? I think I see what's going on here

Paper

@jorisdigitalREAL
Copy link

I have found something out:
The error most likely comes from a Skript add-on called BungeeSK. If the connection script is deleted, Skript can be reloaded without any problems.

@Minecradt
Copy link
Author

Ok!

@jorisdigitalREAL
Copy link

But my error looks a little different.
I don't know if this is due to the add-on or Skript.


> sk reload scripts
[12:00:38] [Server thread/INFO]: [Skript] Lade alle Skripte neu...
[12:00:38] [Server thread/ERROR]: #!#!
[12:00:38] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[12:00:38] [Server thread/ERROR]: #!#! Exception occurred in Skript's main command
[12:00:38] [Server thread/ERROR]: #!#! Used command: /sk reload scripts
[12:00:38] [Server thread/ERROR]: #!#!
[12:00:38] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[12:00:38] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[12:00:38] [Server thread/ERROR]: #!#! It looks like you are using some plugin(s) that alter how Skript works (addons).
[12:00:38] [Server thread/ERROR]: #!#! Here is full list of them:
[12:00:38] [Server thread/ERROR]: #!#! skript-placeholders v1.6.0 (https://github.com/APickledWalrus/skript-placeholders) skRayFall v1.9.28 (https://sk.rayfall.net/) skript-reflect v2.4 (https://github.com/SkriptLang/skript-reflect) skript-gui v1.3 (https://github.com/APickledWalrus/skript-gui) skript-teams v1.0 (https://github.com/hapily04/skript-teams) SkBee v3.5.7 (https://github.com/ShaneBeee/SkBee) skUtilities v0.9.2 (https://tim740.github.io/) skript-yaml v1.5 SkQuery v4.1.10 BungeeSK v2.0.0 (https://github.com/ZorgBtw/BungeeSK) skript-db v0.2.1
[12:00:38] [Server thread/ERROR]: #!#! We could not identify which of those are specially related, so this might also be Skript issue.
[12:00:38] [Server thread/ERROR]: #!#! You should try disabling those plugins one by one, trying to find which one causes it.
[12:00:38] [Server thread/ERROR]: #!#! If the error doesn't disappear even after disabling all listed plugins, it is probably Skript issue.
[12:00:38] [Server thread/ERROR]: #!#! In that case, you will be given instruction on how should you report it.
[12:00:38] [Server thread/ERROR]: #!#! On the other hand, if the error disappears when disabling some plugin, report it to author of that plugin.
[12:00:38] [Server thread/ERROR]: #!#! Only if the author tells you to do so, report it to Skript's issue tracker.
[12:00:38] [Server thread/ERROR]: #!#!
[12:00:38] [Server thread/ERROR]: #!#! Stack trace:
[12:00:38] [Server thread/ERROR]: #!#! java.lang.NullPointerException: Cannot read the array length because "<local1>" is null
[12:00:38] [Server thread/ERROR]: #!#! at Skript-2.9.0(1).jar//ch.njol.skript.events.EvtPeriodical.unload(EvtPeriodical.java:98)
[12:00:38] [Server thread/ERROR]: #!#! at Skript-2.9.0(1).jar//ch.njol.skript.structures.StructEvent.unload(StructEvent.java:96)
[12:00:38] [Server thread/ERROR]: #!#! at Skript-2.9.0(1).jar//ch.njol.skript.ScriptLoader.unloadScripts(ScriptLoader.java:852)
[12:00:38] [Server thread/ERROR]: #!#! at Skript-2.9.0(1).jar//ch.njol.skript.SkriptCommand.onCommand(SkriptCommand.java:152)
[12:00:38] [Server thread/ERROR]: #!#! at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[12:00:38] [Server thread/ERROR]: #!#! at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[12:00:38] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1000)
[12:00:38] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.CraftServer.dispatchServerCommand(CraftServer.java:985)
[12:00:38] [Server thread/ERROR]: #!#! at net.minecraft.server.dedicated.DedicatedServer.handleConsoleInputs(DedicatedServer.java:526)
[12:00:38] [Server thread/ERROR]: #!#! at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:474)
[12:00:38] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1597)
[12:00:38] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1303)
[12:00:38] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[12:00:38] [Server thread/ERROR]: #!#! at java.base/java.lang.Thread.run(Thread.java:1583)
[12:00:38] [Server thread/ERROR]: #!#!
[12:00:38] [Server thread/ERROR]: #!#! Version Information:
[12:00:38] [Server thread/ERROR]: #!#! Skript: 2.9.0 (latest)
[12:00:38] [Server thread/ERROR]: #!#! Flavor: skriptlang-github
[12:00:38] [Server thread/ERROR]: #!#! Date: 16:01:35.354421100
[12:00:38] [Server thread/ERROR]: #!#! Bukkit: 1.21-R0.1-SNAPSHOT
[12:00:38] [Server thread/ERROR]: #!#! Minecraft: 1.21
[12:00:38] [Server thread/ERROR]: #!#! Java: 21.0.3 (Java HotSpot(TM) 64-Bit Server VM 21.0.3+7-LTS-152)
[12:00:38] [Server thread/ERROR]: #!#! OS: Linux amd64 5.15.0-117-generic
[12:00:38] [Server thread/ERROR]: #!#!
[12:00:38] [Server thread/ERROR]: #!#! Server platform: Paper
[12:00:38] [Server thread/ERROR]: #!#!
[12:00:38] [Server thread/ERROR]: #!#! Current node: null
[12:00:38] [Server thread/ERROR]: #!#! Current item: null
[12:00:38] [Server thread/ERROR]: #!#!
[12:00:38] [Server thread/ERROR]: #!#! Thread: Server thread
[12:00:38] [Server thread/ERROR]: #!#!
[12:00:38] [Server thread/ERROR]: #!#! Language: german
[12:00:38] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[12:00:38] [Server thread/ERROR]: #!#!
[12:00:38] [Server thread/ERROR]: #!#! End of Error.
[12:00:38] [Server thread/ERROR]: #!#!

@APickledWalrus
Copy link
Member

There is an issue with the move event, though you do seem to be having a different issue with an add on as you mentioned

@APickledWalrus APickledWalrus added bug An issue that needs to be fixed. Alternatively, a PR fixing an issue. priority: medium Issues that are detrimental to user experience (prohibitive bugs or lack of useful implementation). labels Jul 27, 2024
@APickledWalrus
Copy link
Member

To document here: EvtMove incorrectly returns null (for Spigot versions) for getEventClasses() when it has not yet inited. It should likely throw an error instead. This is caused by the listening behavior feature calling getEventClasses() before init has been called. Likely fix on our end is to move the listening behavior checks to after the implementation's init call.

@EquipableMC EquipableMC mentioned this issue Jul 28, 2024
1 task
@APickledWalrus APickledWalrus added PR available Issues which have a yet-to-be merged PR resolving it completed The issue has been fully resolved and the change will be in the next Skript update. and removed PR available Issues which have a yet-to-be merged PR resolving it labels Jul 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug An issue that needs to be fixed. Alternatively, a PR fixing an issue. completed The issue has been fully resolved and the change will be in the next Skript update. priority: medium Issues that are detrimental to user experience (prohibitive bugs or lack of useful implementation).
Projects
None yet
Development

No branches or pull requests

5 participants