Spigot Plugin (2021-06-10)
Spigot plugin release, place in plugins directory. Compatible with spigot-1.16.5.jar.
broadcastwas added is an alias foryell- There is now a mechanism in place to add onDisable hooks. See
add_ondisable_handler(name, func)andremove_ondisable_handler(name). Example:
from mcapi import *
def test_handler():
yell('Server is shutting down')
add_ondisable_handler('test', test_handler)