Skip to content

1.8-pre-9

Pre-release
Pre-release
Compare
Choose a tag to compare
@retrooper retrooper released this 11 Mar 09:08

CHANGELOG

Please remember this is only a summary of the changes, I won't list every single change to keep this readable. I only specify the most important changes.

IMPORTANT NOTES

  • You need to soft-depend ProtocolLib, ViaVersion and ProtocolSupport in your plugin. (if you are shading PacketEvents)
  • You are recommended to make your plugin load at server STARTUP, not POSTWORLD.
    Example plugin.yml
name: myplugin
version: 1.0.0
main: me.opdeveloper.myplugin.MainClass
load: STARTUP
author: myname
softdepend:
  - ProtocolLib
  - ProtocolSupport
  - ViaVersion

BUG FIXES

  • Early injector now supports Java 12 and above.
  • Early injector will automatically revert to the compatibility/late injector if it fails.(and warn you in the console that it failed)
  • WrappedPacketInEntityAction issues on spigot 1.8.0 fixed.

NEW FEATURES

  • WrappedPacketOutPlayerInfo created.
  • WrappedPacketOutNamedEntitySpawn created.
    (CREATING AND MOVING NPCS is now possible)
  • WrappedPacketOutEntity.WrappedPacketOutEntityLook created
  • WrappedPacketOutEntity.WrappedPacketOutEntityMove created,
  • WrappedPacketOutEntity.WrappedPacketOutRelEntityMoveLook created

CHANGES

  • PacketEvents#init() no longer requires a plugin instance. Old function with the plugin instance argument is now deprecated.

EXAMPLE USAGE

Example for packetevents-1.8-pre-9