Releases: ShaneBeee/SkBee
Releases · ShaneBeee/SkBee
Small Update [1.4.8]
Changed:
- Changed the syntax for BlockData when running Skript 2.5-beta1+ due to Skript adding its own block data system
Old:
block[ ](data|state) [(tags|tag %-string%|without update[s])]"
New:
The part within the parenthesis is no longer optional. (Again, only on Skript 2.5-beta1+)
block[ ](data|state) (tags|tag %-string%|without update[s])"
If using Skript 2.5-beta1+ simply remove the quotes around your block data and replace commas with a semi colon,
example:
#from
set block data of target block to "campfire[lit=false,waterlogged=true]"
#to
set block data of target block to campfire[lit=false;waterlogged=true]
Small Fixes [1.4.7]
FIXED:
- Fixed an issue with nested tags not working and/or throwing errors
- Fixed an issue with getting/settings block NBT from a non tile entity throwing errors
CHANGED:
- Added an option to setting block data to not update neighbouring blocks.
Small Fixes [1.4.6]
FIXED:
- Fixed an issue with not being able to store enchants on a slot of an inventory
CHANGED:
- Updated StructureBlockLib version (I dont think anything actually changed)
- Added an auto-disabler for Structure elements when a new MC version comes out, and StructureBlockLib has not updated yet. This message will let users know why exactly its not working.
- Added "state" to the syntax of block data elements, since Minecraft actually calls them BlockStates where as Bukkit calls them BlockData
Return of Structures [1.4.5]
CHANGED:
- Structures now work again in 1.16.1
FIXED:
- Fixed an issue with NBT in inventory slots
Small Changes [1.4.4]
FIXED:
- Fixed a small issue with virtual furnaces throwing errors
- Fixed an issue where input slots of virtual furnaces kept smelting even if the output slot was full, thus losing items.
- Fixed an issue with null NBT throwing invalid error, now it will pass
CHANGED:
ADDED:
- Added support to retrieve UUIDs from NBT (NBT actually stores UUIDs in a split format, this joins it together)
- Added changers to bounds coord expression for adding/subtracting to/from coords rather than just setting them
- Added an option to modify NBT of an inventory slot
NOTES:
- Structure elements for 1.16+ still not working. These elements use an API called StructureBlockLib, which has still not updated for 1.16.x yet.
Beta test of fix
FIXED:
- Temp fix for concurrent modification exception due to furnace yaml
Small Fixes [1.4.3]
FIXED:
- Fixed an issue with some NBT throwing null pointer errors
CHANGED:
- Changed NBT tags, so if they are not present, return null instead of full NBT string
Smithing Time [1.4.2]
ADDED:
- Added a syntax for registering smithing recipes (see DOCS)
Small Fix [1.4.1]
FIXED:
- Hopefully fixed an NPE with virtual furnaces
CHANGED:
- Temporarily disabled structure elements until StructureAPI is updated
Some new stuff [1.4.0]
ADDED:
- Added support for 1.16.x
- Added an expression to get all recipes from an item
- Added an expression to get all ingredients for a recipe