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 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneBeee committed Dec 4, 2023
1 parent 2a66004 commit f9a7c83
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ compileJava {
}

// SkBee version
version = '2.18.4'
version = '3.0.0'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
@Examples({"on right click:",
"\tif clicked block can random tick:",
"\t\trandom tick clicked block"})
@Since("INSERT VERSION")
@Since("3.0.0")
public class CondBlockCanRandomTick extends Condition {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"This will tick the block the same way Minecraft randomly ticks according to the randomTickSpeed gamerule.",
"Requires Paper 1.19+"})
@Examples("random tick blocks in radius 3 around target block")
@Since("INSERT VERSION")
@Since("3.0.0")
public class EffBlockRandomlyTick extends Effect {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"\nNote: Some effects will only play on certain entities, ex: `wolf_shake` will only play on a wolf."})
@Examples({"play entity effect break_equipment_main_hand on player",
"play entity effect death on all mobs"})
@Since("INSERT VERSION")
@Since("3.0.0")
public class EffEntityEffect extends Effect {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"set {_i::*} to add or return (a diamond and an emerald) to inventory of target block",
"if {_i::*} is set:",
"\tdrop {_i::*} above target block without velocity"})
@Since("INSERT VERSION")
@Since("3.0.0")
public class ExprGiveOrReturn extends SimpleExpression<ItemStack> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ public boolean canParse(@NotNull ParseContext context) {
.user("entit(y|ies) ?effects?")
.name("Entity Effect")
.description("Represents an effect that can be played on an entity.")
.since("INSERT VERSION"));
.since("3.0.0"));
}

}

0 comments on commit f9a7c83

Please sign in to comment.