Skip to content

Commit 27efc91

Browse files
committed
Prepare for release of 1.4.0
1 parent f4aa693 commit 27efc91

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
java.sourceCompatibility = JavaVersion.VERSION_25
99

1010
group = "com.github.SkriptDev"
11-
val projectVersion = "1.3.0"
11+
val projectVersion = "1.4.0"
1212
val hytaleVersion = "2026.02.19-1a311a592"
1313
// You can find Hytale versions on their maven repo:
1414
// https://maven.hytale.com/release/com/hypixel/hytale/Server/maven-metadata.xml

src/main/java/com/github/skriptdev/skript/plugin/elements/conditions/player/CondPlayerIsOnline.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static void register(SkriptRegistration reg) {
1919
.examples("if player is online:",
2020
"if player is not online:",
2121
"while player is online:")
22-
.since("INSERT VERSION")
22+
.since("1.4.0")
2323
.register();
2424
}
2525

src/main/java/com/github/skriptdev/skript/plugin/elements/effects/player/EffCameraEffect.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static void register(SkriptRegistration reg) {
2323
.description("Applies a camera effect to the specified players with an optional intensity.")
2424
.examples("apply camera effect Impact_Strong to player",
2525
"apply camera effect Mace_Explode with intensity 2 to player")
26-
.since("INSERT VERSION")
26+
.since("1.4.0")
2727
.register();
2828
}
2929

src/main/java/com/github/skriptdev/skript/plugin/elements/events/entity/EvtTeleport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static void register(SkriptRegistration reg) {
4343
.description("Called when an entity/player teleports.")
4444
.examples("on player teleport:",
4545
"\tsend \"Ok byeeee....\" to player")
46-
.since("INSERT VERSION")
46+
.since("1.4.0")
4747
.setHandledContexts(TeleportContext.class)
4848
.register();
4949

src/main/java/com/github/skriptdev/skript/plugin/elements/types/TypesAssetStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ static void register(SkriptRegistration reg) {
6161
"cameraeffect", "cameraEffect@s")
6262
.name("Camera Effect")
6363
.description("Represents the types of camera effects in the game.")
64-
.since("INSERT VERSION")
64+
.since("1.4.0")
6565
.toStringFunction(CameraEffect::getId)
6666
.register();
6767
reg.newAssetStoreType(CraftingRecipe.class, CraftingRecipe.getAssetMap(), "craftingrecipe", "craftingrecipe@s")

0 commit comments

Comments
 (0)