-
Notifications
You must be signed in to change notification settings - Fork 0
Current Issues
Thomas VILLIOT-CORNILLON edited this page Oct 28, 2025
·
6 revisions
Below are currently known recurring issues and their recommended workarounds or fixes.
Error Message (console / logs):
You can't cancel TeleportTask because TeleportTask is null!
When does this happen?
Occurs occasionally when a player teleports to:
- A home (
/home <name>or/home) - The spawn (
/spawnor equivalent alias) - Shortly after a server (re)start or plugin reload
Simply restart your server. In most cases the scheduler context that manages delayed or cancellable teleports failed to initialize properly during the first load.
- The internal teleport handler (task wrapper) was never created because initialization order was interrupted.
- A plugin reload (
/reload) or hot-reload plugin manager skipped lifecycle hooks. - Another plugin cancelled or interfered with scheduled tasks.
- Rare race condition between player join + immediate teleport command.
- Restart the server cleanly (no
/reload). - Avoid using
/reload; do a full restart instead. - Check if the error still occurs with only HomePlugin + a permissions plugin.
- Collect:
- Server version (e.g.
Paper 1.20.4 build ####) - HomePlugin version (JitPack tag / commit)
- Java version (
java -version) - List of major gameplay / teleport / region plugins
- Exact command used and context (player just joined? in combat? etc.)
- Server version (e.g.
Open an issue:
https://github.com/fuzeblocks/HomePlugin/issues
Please include:
- Steps to reproduce (numbered)
- Expected vs actual result
- Full stack trace (if any)
- Config excerpts related to teleport / delays
- Whether Redis is enabled (if applicable)
When opening an issue:
- One problem per issue (donβt bundle multiple unrelated bugs)
- Use a clear title (e.g.
[BUG] TeleportTask null on /home after restart) - Attach logs using a paste service (NOT screenshots when possible)
- Mention if this happens only under load / with many players
If the issue persists and you cannot isolate it, feel free to contact the maintainer or join the support channel (if available).
This document will be expanded as new issues are identified.
Found something else? Let us know!
- π’ Before starting
- π Cache
- π Current Issues
- π― Events
- π Home Limit Permissions
- π Home API usage
- π Spawn API usage
- π£οΈ Language File Update GUIDE
- βοΈ Plugin API
- π Teleportation API