Skip to content

Commit 7a130c6

Browse files
authored
Prepare for release of 2.6-beta1 (SkriptLang#4132)
* insert version -> 2.6 * gradle.properties - update version number
1 parent 41be19b commit 7a130c6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
groupid=ch.njol
22
name=skript
3-
version=2.6-alpha1
3+
version=2.6-beta1
44
jarName=Skript.jar
55
testEnv=paper-1.16.5

src/main/java/ch/njol/skript/events/EvtBlock.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -59,27 +59,27 @@ public class EvtBlock extends SkriptEvent {
5959
.description("Called when a block is broken by a player. If you use 'on mine', only events where the broken block dropped something will call the trigger.")
6060
.examples("on mine:", "on break of stone:", "on mine of any ore:", "on break of chest[facing=north]:", "on break of potatoes[age=7]:")
6161
.requiredPlugins("Minecraft 1.13+ (BlockData)")
62-
.since("1.0 (break), <i>unknown</i> (mine), INSERT VERSION (BlockData support)");
62+
.since("1.0 (break), <i>unknown</i> (mine), 2.6 (BlockData support)");
6363
Skript.registerEvent("Burn", EvtBlock.class, BlockBurnEvent.class, "[block] burn[ing] [[of] %itemtypes/blockdatas%]")
6464
.description("Called when a block is destroyed by fire.")
6565
.examples("on burn:", "on burn of wood, fences, or chests:", "on burn of oak_log[axis=y]:")
6666
.requiredPlugins("Minecraft 1.13+ (BlockData)")
67-
.since("1.0, INSERT VERSION (BlockData support)");
67+
.since("1.0, 2.6 (BlockData support)");
6868
Skript.registerEvent("Place", EvtBlock.class, new Class[]{BlockPlaceEvent.class, PlayerBucketEmptyEvent.class, HangingPlaceEvent.class}, "[block] (plac(e|ing)|build[ing]) [[of] %itemtypes/blockdatas%]")
6969
.description("Called when a player places a block.")
7070
.examples("on place:", "on place of a furnace, workbench or chest:", "on break of chest[type=right] or chest[type=left]")
7171
.requiredPlugins("Minecraft 1.13+ (BlockData)")
72-
.since("1.0, INSERT VERSION (BlockData support)");
72+
.since("1.0, 2.6 (BlockData support)");
7373
Skript.registerEvent("Fade", EvtBlock.class, BlockFadeEvent.class, "[block] fad(e|ing) [[of] %itemtypes/blockdatas%]")
7474
.description("Called when a block 'fades away', e.g. ice or snow melts.")
7575
.examples("on fade of snow or ice:", "on fade of snow[layers=2]")
7676
.requiredPlugins("Minecraft 1.13+ (BlockData)")
77-
.since("1.0, INSERT VERSION (BlockData support)");
77+
.since("1.0, 2.6 (BlockData support)");
7878
Skript.registerEvent("Form", EvtBlock.class, BlockFormEvent.class, "[block] form[ing] [[of] %itemtypes/blockdatas%]")
7979
.description("Called when a block is created, but not by a player, e.g. snow forms due to snowfall, water freezes in cold biomes. This isn't called when block spreads (mushroom growth, water physics etc.), as it has its own event (see <a href='#spread'>spread event</a>).")
8080
.examples("on form of snow:", "on form of a mushroom:")
8181
.requiredPlugins("Minecraft 1.13+ (BlockData)")
82-
.since("1.0, INSERT VERSION (BlockData support)");
82+
.since("1.0, 2.6 (BlockData support)");
8383
}
8484
}
8585

src/main/java/ch/njol/skript/expressions/ExprBlockHardness.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
@Examples({"set {_hard} to block hardness of target block",
3535
"if block hardness of target block > 5:"})
3636
@RequiredPlugins("Minecraft 1.13+")
37-
@Since("INSERT VERSION")
37+
@Since("2.6")
3838
public class ExprBlockHardness extends SimplePropertyExpression<ItemType, Number> {
3939

4040
static {

0 commit comments

Comments
 (0)