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.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneBeee committed Aug 18, 2024
1 parent 91790dd commit 79df83d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ compileJava {
}

// SkBee version
version = '3.6.0'
version = '3.6.1'
def latestJava = 21
def oldestJava = 17

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
@Examples({"break blocks in radius 2 around target block with effects",
"break {_blocks::*} with effects and with xp",
"break {_blocks::*} with effects and with xp using player's tool"})
@Since("INSERT VERSION")
@Since("3.6.1")
public class EffBreakBlocksWithEffects extends Effect {

private static final boolean HAS_EFFECTS = Skript.methodExists(Block.class, "breakNaturally", boolean.class, boolean.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
@Description("Get a list of all chunks within 2 locations.")
@Examples({"loop all chunks within {_l1} and {_l2}:",
"refresh all chunks within {_l1} and {_l2}"})
@Since("INSERT VERSION")
@Since("3.6.1")
public class ExprChunksWithinCuboid extends SimpleExpression<Chunk> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public String get(PlayerRecipeDiscoverEvent event) {
"\tset {_e} to event-string",
"\tif {_e} = \"minecraft:diamond_shovel\":",
"\t\tset name of recipe result to \"&cMr Shovel\"")
.since("INSERT VERSION");
.since("3.6.1");

EventValues.registerEventValue(CrafterCraftEvent.class, String.class, new Getter<>() {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"\tset {_e} to event-string",
"\tif {_e} = \"minecraft:diamond_shovel\":",
"\t\tset name of recipe result to \"&cMr Shovel\""})
@Since("INSERT VERSION")
@Since("3.6.1")
public class ExprRecipeResultSlot extends SimpleExpression<Slot> {

public static final boolean HAS_CRAFTER_RECIPE = Skript.classExists("org.bukkit.event.block.CrafterCraftEvent");
Expand Down

0 comments on commit 79df83d

Please sign in to comment.