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.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneBeee committed Mar 21, 2023
1 parent 00afd53 commit fbaf363
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 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.8.0</version>
<version>2.8.1</version>

<properties>
<maven.compiler.source>16</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@Name("Interaction - Last Attack/Interaction Player")
@Description({"Represents the last player to attack/interact with an Interaction Entity.", Types.McWiki_INTERACTION})
@Examples("set {_player} to last attack player of {_int}")
@Since("INSERT VERSION")
@Since("2.8.1")
public class ExprInteractionPlayer extends SimplePropertyExpression<Entity, OfflinePlayer> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@Name("Interaction - Is Responsive")
@Description({"Represents the state of being responsive of an Interaction Entity.", Types.McWiki_INTERACTION})
@Examples("set is responsive of {_int} to true")
@Since("INSERT VERSION")
@Since("2.8.1")
public class ExprInteractionResponsive extends SimplePropertyExpression<Entity, Boolean> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"As per Minecraft \"The timestamp of the game tick when the event happened\".",
"Appears to be how many ticks since the world was created.", Types.McWiki_INTERACTION})
@Examples("set {_time} to last attack timestamp of target entity")
@Since("INSERT VERSION")
@Since("2.8.1")
public class ExprInteractionTime extends SimplePropertyExpression<Entity, Long> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"add 5 to interaction width of {_int}",
"remove 2.5 from interaction width of {_int}",
"reset interaction height of {_int}"})
@Since("INSERT VERSION")
@Since("2.8.1")
public class ExprInteractionWidthHeight extends SimplePropertyExpression<Entity, Float> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public boolean canParse(ParseContext context) {
}
.description("Creates a new Quaternion.")
.examples("set {_v} to quaternion(1,0,0,0)")
.since("INSERT VERSION"));
.since("2.8.1"));

Functions.registerFunction(new SimpleJavaFunction<>("axisAngle", new Parameter[]{
new Parameter<>("angle", DefaultClasses.NUMBER, true, null),
Expand All @@ -225,7 +225,7 @@ public boolean canParse(ParseContext context) {
.description("Creates a new AxisAngle4f (Will be converted and returned as a Quaternion).",
"I have no clue what this is, ask ThatOneWizard!")
.examples("set {_v} to axisAngle(0.25,0,0,1)")
.since("INSERT VERSION"));
.since("2.8.1"));

Functions.registerFunction(new SimpleJavaFunction<>("transformation", new Parameter[]{
new Parameter<>("translation", DefaultClasses.VECTOR, true, null),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@Description({"Represents the game ticks of a world,",
"essentially how many ticks this world has ticked from since creation."})
@Examples("set {_gt} to game ticks of world of player")
@Since("INSERT VERSION")
@Since("2.8.1")
public class ExprGameTick extends SimplePropertyExpression<World, Long> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
@Description({"Represents the item hiding in a Suspicious Block.",
"As of Minecraft 1.19.4 the only block is Suspicious Sand."})
@Examples("set suspicious item of target block to a diamond")
@Since("INSERT VERSION")
@Since("2.8.1")
public class ExprSuspiciousBlock extends SimplePropertyExpression<Block, ItemType> {

static {
Expand Down

0 comments on commit fbaf363

Please sign in to comment.