Recent content by Zor1s

  • After careful consideration and due to limited usage, we’ve made the decision to discontinue the PaperMC forums. Moving forward, we recommend using Hangar for plugin uploads, and for all other community discussions and support, please join us on Discord.
  1. Z

    Question Cannot invoke "net.minecraft.server.network.ServerGamePacketListenerImpl.latency()" because "player.connection" is null

    I'm trying to port my 1.21 plugin to 1.21.3 and trying to port NPC spawning. Before, I used to spawn them with NMS like this: connection.send(ClientboundPlayerInfoUpdatePacket(ClientboundPlayerInfoUpdatePacket.Action.ADD_PLAYER, npc)) connection.send(ClientboundAddPlayerPacket(npc)) But now I'm...
  2. Z

    Question Did not find a valid velocity-plugin.json

    Plugin class: @Plugin( id = "hub-plugin", name = "Hub Plugin", version = "0.1", ) class VelocityTest @Inject constructor(logger: Logger) { init { logger.info("Hub plugin started!") } } Build file: plugins { kotlin("jvm") version "1.7.20" } group = "its.meee"...