Skip to content

Spigot Plugin (2021-06-10)

Choose a tag to compare

@Macuyiko Macuyiko released this 10 Jun 19:48
· 23 commits to master since this release

Spigot plugin release, place in plugins directory. Compatible with spigot-1.16.5.jar.

  • broadcast was added is an alias for yell
  • There is now a mechanism in place to add onDisable hooks. See add_ondisable_handler(name, func) and remove_ondisable_handler(name). Example:
from mcapi import *

def test_handler():
    yell('Server is shutting down')

add_ondisable_handler('test', test_handler)