Skip to content

Releases: ShaneBeee/SkBee

Small Update [1.4.8]

05 Aug 03:29
Compare
Choose a tag to compare

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]

29 Jul 22:39
Compare
Choose a tag to compare

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]

16 Jul 22:01
Compare
Choose a tag to compare

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]

10 Jul 20:09
Compare
Choose a tag to compare

CHANGED:

  • Structures now work again in 1.16.1

FIXED:

  • Fixed an issue with NBT in inventory slots

Small Changes [1.4.4]

10 Jul 07:28
Compare
Choose a tag to compare

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

08 Jul 09:30
Compare
Choose a tag to compare
Beta test of fix Pre-release
Pre-release

FIXED:

  • Temp fix for concurrent modification exception due to furnace yaml

Small Fixes [1.4.3]

08 Jul 03:37
Compare
Choose a tag to compare

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]

02 Jul 02:10
Compare
Choose a tag to compare

ADDED:

  • Added a syntax for registering smithing recipes (see DOCS)

Small Fix [1.4.1]

01 Jul 06:59
Compare
Choose a tag to compare

FIXED:

  • Hopefully fixed an NPE with virtual furnaces

CHANGED:

  • Temporarily disabled structure elements until StructureAPI is updated

Some new stuff [1.4.0]

25 Jun 19:17
Compare
Choose a tag to compare

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