Skip to content

Commit c3583ca

Browse files
authored
Prepare for release
1 parent 8ff8957 commit c3583ca

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

gradle.properties

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

src/main/java/ch/njol/skript/conditions/CondIsPluginEnabled.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"if plugin \"WorldGuard\" is not enabled:",
4343
"if plugins \"Essentials\" and \"Vault\" are enabled:",
4444
"if plugin \"MyBrokenPlugin\" is disabled:"})
45-
@Since("INSERT VERSION")
45+
@Since("2.6")
4646
public class CondIsPluginEnabled extends Condition {
4747

4848
static {

src/main/java/ch/njol/skript/conditions/CondIsSkriptCommand.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"",
3636
"# Example 2",
3737
"\"sometext\" is a skript command"})
38-
@Since("INSERT VERSION")
38+
@Since("2.6")
3939
public class CondIsSkriptCommand extends PropertyCondition<String> {
4040

4141
static {

src/main/java/ch/njol/skript/effects/EffBroadcast.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"message to all players instead of broadcasting it."})
4444
@Examples({"broadcast \"Welcome %player% to the server!\"",
4545
"broadcast \"Woah! It's a message!\""})
46-
@Since("1.0, INSERT VERSION (broadcasting objects)")
46+
@Since("1.0, 2.6 (broadcasting objects)")
4747
public class EffBroadcast extends Effect {
4848

4949
static {

src/main/java/ch/njol/skript/effects/EffMessage.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"\tcancel event",
6464
"\tsend \"[%player%] >> %message%\" to all players from player"})
6565
@RequiredPlugins("Minecraft 1.16.4+ for optional sender")
66-
@Since("1.0, 2.2-dev26 (advanced features), 2.5.2 (optional sender), INSERT VERSION (sending objects)")
66+
@Since("1.0, 2.2-dev26 (advanced features), 2.5.2 (optional sender), 2.6 (sending objects)")
6767
public class EffMessage extends Effect {
6868

6969
private static final boolean SUPPORTS_SENDER = Skript.classExists("org.bukkit.command.CommandSender$Spigot") &&

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public class EvtMove extends SkriptEvent {
5555
"\tif event-entity is not in world \"world\":",
5656
"\t\tkill event-entity")
5757
.requiredPlugins("Paper 1.16.5+ (entity move)")
58-
.since("INSERT VERSION");
58+
.since("2.6");
5959
}
6060

6161
private EntityData<?> type;

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
@Description("Returns all registered commands or all script commands.")
3838
@Examples({"send \"Number of all commands: %size of all commands%\"",
3939
"send \"Number of all script commands: %size of all script commands%\""})
40-
@Since("INSERT VERSION")
40+
@Since("2.6")
4141
public class ExprAllCommands extends SimpleExpression<String> {
4242

4343
static {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"permission of command \"/op\"",
5151
"command \"op\"'s permission message",
5252
"command \"sk\"'s plugin owner"})
53-
@Since("INSERT VERSION")
53+
@Since("2.6")
5454
public class ExprCommandInfo extends SimpleExpression<String> {
5555

5656
private enum InfoType {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
@Description("A plain item is an item with no modifications. It can be used to convert items to their default state or to match with other default items.")
3939
@Examples({"if the player's tool is a plain diamond: # check if player's tool has no modifications",
4040
"\tsend \"You are holding a plain diamond!\""})
41-
@Since("INSERT VERSION")
41+
@Since("2.6")
4242
public class ExprPlain extends SimpleExpression<ItemType> {
4343

4444
@SuppressWarnings("null")

0 commit comments

Comments
 (0)