Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
Prepare for release of 2.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneBeee committed May 31, 2023
1 parent d643088 commit 3e30ce9
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 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>com.shanebeestudios</groupId>
<artifactId>SkBee</artifactId>
<version>2.9.0</version>
<version>2.10.0</version>

<properties>
<maven.compiler.source>16</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@Name("Bound - Is Temporary")
@Description("Check if a bound is temporary.")
@Examples("if bound with id \"temporary-bound\" is a temporary bound:")
@Since("INSERT VERSION")
@Since("2.10.0")
public class CondBoundIsTemporary extends PropertyCondition<Bound> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"loop all bounds:",
"\tif {bounds::%loop-bound%::owner} = player:",
"\t\tsend \"You own bound %loop-bound%\""})
@Since("1.15.0, INSERT VERSION (temporary bounds)")
@Since("1.15.0, 2.10.0 (temporary bounds)")
public class ExprBoundAllBounds extends SimpleExpression<Object> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"create a new bound with id \"%uuid of player%.home\" between {loc1} and {loc2}",
"create a temporary bound with id \"%{_world}%.safezone-%random uuid%\" between {loc1} and {loc2}",
"create a full bound with id \"spawn\" between {loc} and location of player"})
@Since("2.5.3, INSERT VERSION (temporary bounds)")
@Since("2.5.3, 2.10.0 (temporary bounds)")
public class EffSecBoundCreate extends EffectSection {

public static class BoundCreateEvent extends Event {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@Name("NBT - File Exists")
@Description("Check if an NBT file already exists.")
@Examples("if nbt file \"plugins/MyPlugin/test.nbt\" exists:")
@Since("INSERT VERSION")
@Since("2.10.0")
public class CondNBTFileExists extends Condition {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

@Name("NBT - Spawn Entity with NBT")
@Description({"Spawn an entity at a location with NBT.",
"The ability to spawn falling was added in INSERT VERSION as a temp effect until Skript properly handles falling blocks",
"The ability to spawn falling was added in 2.10.0 as a temp effect until Skript properly handles falling blocks",
"with block data."})
@Examples({"set {_n} to nbt compound from \"{NoAI:1b}\"",
"spawn sheep at player with nbt {_n}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
@Examples({"make all entities disappear from player",
"make all mobs appear to all players",
"make target entity of player disappear from all players"})
@Since("INSERT VERSION")
@Since("2.10.0")
public class EffShowHideEntity extends Effect {

private static final SkBee PLUGIN = SkBee.getPlugin();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
@Description({"Spawn a falling block data.",
"This is a temp effect until Skript properly handles block data with spawning of falling blocks."})
@Examples("le spawn falling snow[layers=3] above target block of player")
@Since("INSERT VERSION")
@Since("2.10.0")
public class EffSpawnFallingBlockData extends Effect {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
@Name("ItemType From NamespacedKey")
@Description("Get an ItemType from a Minecraft namespaced key.")
@Examples("set {_i} to itemtype from namespaced key from \"minecraft:stone\"")
@Since("INSERT VERSION")
@Since("2.10.0")
public class ExprItemFromNamespacedKey extends SimpleExpression<ItemType> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@Name("Translation Key")
@Description({"Gets the translation key from an object. Requires PaperMC."})
@Examples("set {_t} to translation key of player's tool")
@Since("INSERT VERSION")
@Since("2.10.0")
public class ExprTranslationKey extends SimplePropertyExpression<Object, String> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@Description({"Turn on/off world auto saving. This will prevent changes in the world to be saved to file.",
"\nThis doesn't appear to work when the server stops, so you may need to manually unload your world."})
@Examples("set world autosave of world of player to false")
@Since("INSERT VERSION")
@Since("2.10.0")
public class ExprWorldAutoSave extends SimplePropertyExpression<World, Boolean> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@Examples({"set {_s} to structure named \"test\"",
"place structure {_s} above traget block",
"save structure {_s}"})
@Since("INSERT VERSION")
@Since("2.10.0")
public class ExprStructureLastPlacedLocation extends SimplePropertyExpression<StructureBee, Location> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"add \"Batman\" to team entries of team named \"superheros\"",
"set {_entities::*} to team entries of team named \"mobs\"",
"set {_strings::*} to team entries as strings of team named \"mobs\""})
@Since("1.16.0, INSERT VERSION (strings)")
@Since("1.16.0, 2.10.0 (strings)")
public class ExprTeamEntries extends SimpleExpression<Object> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"set team display name of team of player to \"The Rednecks\"",
"set team display name of team named \"blue-team\" to \"Blue Team\"",
"set {_name} to team name of team of player"})
@Since("INSERT VERSION")
@Since("2.10.0")
@SuppressWarnings("deprecation")
public class ExprTeamName extends SimplePropertyExpression<Team, String> {

Expand Down

0 comments on commit 3e30ce9

Please sign in to comment.