Skip to content

Commit 1ac7681

Browse files
Prepare For Release (2.9.0-pre1)
1 parent 724f2b5 commit 1ac7681

37 files changed

+40
-40
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ org.gradle.parallel=true
55

66
groupid=ch.njol
77
name=skript
8-
version=2.8.7
8+
version=2.9.0-pre1
99
jarName=Skript.jar
1010
testEnv=java21/paper-1.21.0
1111
testEnvJavaVersion=21

src/main/java/ch/njol/skript/classes/data/DefaultFunctions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ public OfflinePlayer[] executeSimple(Object[][] params) {
605605
"set {_p} to offlineplayer(\"069a79f4-44e9-4726-a5be-fca90e38aaf5\")",
606606
"set {_p} to offlineplayer(\"Notch\", false)"
607607
)
608-
.since("2.8.0, INSERT VERSION (prevent lookups)");
608+
.since("2.8.0, 2.9.0 (prevent lookups)");
609609
} // end offline player function
610610

611611
Functions.registerFunction(new SimpleJavaFunction<Boolean>("isNaN", numberParam, DefaultClasses.BOOLEAN, true) {
@@ -632,7 +632,7 @@ public String[] executeSimple(Object[][] params) {
632632
.examples(
633633
"concat(\"hello \", \"there\") # hello there",
634634
"concat(\"foo \", 100, \" bar\") # foo 100 bar"
635-
).since("INSERT VERSION");
635+
).since("2.9.0");
636636

637637
}
638638

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"if {_items::*} aren't resistant to fire:"
3636
})
3737
@RequiredPlugins("Spigot 1.20.5+")
38-
@Since("INSERT VERSION")
38+
@Since("2.9.0")
3939
public class CondIsFireResistant extends PropertyCondition<ItemType> {
4040

4141
static {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"clear entity within {_entity}"
5555
})
5656
@RequiredPlugins("Paper")
57-
@Since("INSERT VERSION")
57+
@Since("2.9.0")
5858
public class CondIsPathfinding extends Condition {
5959

6060
static {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
})
3737
@Examples("target block is resonating")
3838
@RequiredPlugins("Spigot 1.19.4+")
39-
@Since("INSERT VERSION")
39+
@Since("2.9.0")
4040
public class CondIsResonating extends PropertyCondition<Block> {
4141

4242
static {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
@Description("Checks to see if a bell is currently ringing. A bell typically rings for 50 game ticks.")
3434
@Examples("target block is ringing")
3535
@RequiredPlugins("Spigot 1.19.4+")
36-
@Since("INSERT VERSION")
36+
@Since("2.9.0")
3737
public class CondIsRinging extends PropertyCondition<Block> {
3838

3939
static {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"if tool of {_p} is breakable:",
3838
"\tsend \"Your tool is breakable!\" to {_p}"
3939
})
40-
@Since("2.5.1, INSERT VERSION (breakable)")
40+
@Since("2.5.1, 2.9.0 (breakable)")
4141
public class CondIsUnbreakable extends PropertyCondition<ItemType> {
4242

4343
static {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"on load:",
4040
"\tif the script is using \"example feature\":",
4141
"\t\tbroadcast \"You're using an experimental feature!\""})
42-
@Since("INSERT VERSION")
42+
@Since("2.9.0")
4343
public class CondIsUsingFeature extends Condition {
4444

4545
static {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"if the server is whitelisted:",
4141
"if the server whitelist is enforced:"
4242
})
43-
@Since("2.5.2, INSERT VERSION (enforce, offline players)")
43+
@Since("2.5.2, 2.9.0 (enforce, offline players)")
4444
@RequiredPlugins("MC 1.17+ (enforce)")
4545
public class CondIsWhitelisted extends Condition {
4646

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"if additional tooltip of {_item} is hidden:"
4646
})
4747
@RequiredPlugins("Spigot 1.20.5+")
48-
@Since("INSERT VERSION")
48+
@Since("2.9.0")
4949
public class CondTooltip extends Condition {
5050

5151
static {

0 commit comments

Comments
 (0)