Skip to content

Commit f5a5ad0

Browse files
committed
Prepare for release of 1.1.0
1 parent 63a4860 commit f5a5ad0

67 files changed

Lines changed: 77 additions & 77 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

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.0.0"
11+
val projectVersion = "1.1.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/block/CondBlockIsSolid.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public static void register(SkriptRegistration reg) {
1616
.name("Block is Solid")
1717
.description("Check if a Block/BlockType is solid.")
1818
.examples("if target block of player is solid:")
19-
.since("INSERT VERSION")
19+
.since("1.1.0")
2020
.register();
2121
}
2222

src/main/java/com/github/skriptdev/skript/plugin/elements/conditions/entity/CondEntityIsAlive.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public static void register(SkriptRegistration reg) {
2222
.description("Check if a LivingEntity is alive/dead.")
2323
.examples("if player is alive:",
2424
"\tkill player")
25-
.since("INSERT VERSION")
25+
.since("1.1.0")
2626
.register();
2727
}
2828

src/main/java/com/github/skriptdev/skript/plugin/elements/conditions/entity/CondEntityIsFrozen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static void register(SkriptRegistration reg) {
2020
"frozen")
2121
.name("Entity is Frozen")
2222
.description("Checks if the living entities are frozen.")
23-
.since("INSERT VERSION")
23+
.since("1.1.0")
2424
.register();
2525
}
2626

src/main/java/com/github/skriptdev/skript/plugin/elements/conditions/entity/CondEntityIsTameable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static void register(SkriptRegistration reg) {
1818
.description("Check if an entity is tameable.")
1919
.experimental("Hytale is just adding taming, so this may change in the future.")
2020
.examples("if target entity of player is tameable:")
21-
.since("INSERT VERSION")
21+
.since("1.1.0")
2222
.register();
2323
}
2424

src/main/java/com/github/skriptdev/skript/plugin/elements/conditions/entity/CondEntityIsTamed.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static void register(SkriptRegistration reg) {
1818
.description("Check if an entity is tamed.")
1919
.experimental("Hytale is just adding taming, so this may change in the future.")
2020
.examples("if target entity of player is tameable:")
21-
.since("INSERT VERSION")
21+
.since("1.1.0")
2222
.register();
2323
}
2424

src/main/java/com/github/skriptdev/skript/plugin/elements/conditions/other/CondObjectOfType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static void register(SkriptRegistration reg) {
2020
.description("Checks if the objects are of the specified types.")
2121
.examples("if {var} is a Player:",
2222
"if {var} is an Entity:")
23-
.since("INSERT VERSION")
23+
.since("1.1.0")
2424
.register();
2525
}
2626

src/main/java/com/github/skriptdev/skript/plugin/elements/conditions/player/CondPlayerHasPlayedBefore.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("on player ready:",
2020
"\tif player has not played before:",
2121
"\t\tadd itemstack of 10 of food_kebab_meat to inventory of player")
22-
.since("INSERT VERSION")
22+
.since("1.1.0")
2323
.register();
2424
}
2525

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static void register(SkriptRegistration reg) {
2626
.examples("if player can fly:",
2727
"set player can fly to false",
2828
"reset player can fly")
29-
.since("INSERT VERSION")
29+
.since("1.1.0")
3030
.register();
3131
}
3232

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static void register(SkriptRegistration reg) {
1818
.description("Checks if the player is falling.")
1919
.examples("if player is falling:",
2020
"\tmessage \"You are falling!\"")
21-
.since("INSERT VERSION")
21+
.since("1.1.0")
2222
.register();
2323
}
2424

0 commit comments

Comments
 (0)