- Removed XSeries dependency to allow me to support newer versions faster instead of waiting on them to update.
- Implemented compatibility utilities for material, particle, sound, attribute, and enchant instances by mapping changed names across versions or mapping all valid names all together.
- Skulls no longer support head texture until I find an alternative for XSeries/ allow XSeries only on compatible server.
- Fixed exception in 1.16.5 saying BigDripLeaf/Brushable class not exists.
This update breaks current message actions
(sendChat, sendActionbar, sendHologram, etc..)
Code (YAML):
# Old format
do
:
- sendChat <&aThis is a chat message> delay=3s
- sendTitle <This is a title> <subtitle=This is a subtitle> chance=0.5
# New format
do
:
- sendChat &aThis is a chat message delay=3s
- sendTitle This is a title subtitle=This is a subtitle chance=0.5
- The scripting system no longer supports <> brackets, commas are now used to separate parameters, and equals signs are used to define flags. Both must be escaped to be used normally in text:
Code (YAML):
do
: chatMessage This message contains ,, and == sings!