Skip to content

Commit

Permalink
Prepare for release of 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneBeee committed Jan 18, 2021
1 parent 4b796fd commit 9b64f38
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>tk.shanebee</groupId>
<artifactId>SkBee</artifactId>
<version>1.9.1</version>
<version>1.10.0</version>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
"Also note that you can NOT create custom tags for entities/blocks. As of 1.7.1 blocks(tile entities)/entities will be able to hold custom nbt",
"data in the \"custom\" tag of said block/entity. Due to Minecraft not supporting this, I had to use some hacky methods to make this happen.",
"That said, this system is a tad convoluted, see the SkBee WIKI for more details.",
"As of INSERT VERSION you can now add custom NBT to any block (the same as you would for tile entities)(This is only support on 1.16.4+). ",
"As of 1.10.0 you can now add custom NBT to any block (the same as you would for tile entities)(This is only support on 1.16.4+). ",
"Since Minecraft does not natively support this, the NBT is actually stored in the chunk's NBT. See wiki for more info.",
"As of INSERT VERSION you can get/set specific tag types of NBT compounds, allowing for more detailed control of what type your tag is going to be."})
"As of 1.10.0 you can get/set specific tag types of NBT compounds, allowing for more detailed control of what type your tag is going to be."})
@Examples({"set {_tag} to tag \"Invulnerable\" of targeted entity's nbt",
"send \"Tag: %tag \"\"CustomName\"\" of nbt of target entity%\" to player",
"set {_tag} to \"Enchantments\" tag of nbt of player's tool",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class SkriptTypes {
.usage(NBTCustomType.getNames())
.examples("set byte tag \"points\" of {_nbt} to 1",
"set compound tag \"tool\" of {_nbt} to nbt compound of player's tool")
.since("INSERT VERSION")
.since("1.10.0")
.parser(new Parser<NBTCustomType>() {

@Nullable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
@Examples({"if player's tool is tagged with minecraft tag \"carpets\":",
"if target block is not tagged as minecraft tag \"fence_gates\"",
"if clicked block is tagged as minecraft block tag \"doors\" or minecraft block tag \"fence_gates\""})
@Since("INSERT VERSION")
@Since("1.10.0")
public class CondIsMinecraftTagged extends Condition {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"Requires Minecraft 1.16+"})
@Examples({"play open animation on target block",
"play close animation on all blocks in radius 3 around player"})
@Since("INSERT VERSION")
@Since("1.10.0")
public class EffOpenContainerAnimation extends Effect {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
@Examples({"set {_a} to material choice of diamond sword, diamond shovel and diamond hoe",
"set {_a} to material choice of every sword",
"set {_a} to material choice of minecraft tag \"doors\""})
@Since("INSERT VERSION")
@Since("1.10.0")
public class ExprMaterialChoice extends SimpleExpression<MaterialChoice> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"set {_tag} to \"minecraft:climbable\"", "",
"loop minecraft tags:",
"\tsend \"-%loop-value%\" to console"})
@Since("INSERT VERSION")
@Since("1.10.0")
public class ExprMinecraftTag extends SimpleExpression<Object> {

private static final String[] TAG_TYPE = new String[]{Tag.REGISTRY_ITEMS, Tag.REGISTRY_BLOCKS};
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/tk/shanebee/bee/elements/other/type/Types.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public String getVariableNamePattern() {
.examples("set {_a} to material choice of diamond sword, diamond shovel and diamond hoe",
"set {_a} to material choice of every sword",
"set {_a} to material choice of minecraft tag \"doors\"")
.since("INSERT VERSION")
.since("1.10.0")
.parser(new Parser<MaterialChoice>() {

@Override
Expand Down Expand Up @@ -119,7 +119,7 @@ public String getVariableNamePattern() {
"set {_tag} to \"minecraft:climbable\"", "",
"loop minecraft tags:",
"\tsend \"-%loop-value%\" to console")
.since("INSERT VERSION")
.since("1.10.0")
.parser(new Parser<Tag>() {

@Override
Expand Down

0 comments on commit 9b64f38

Please sign in to comment.