File tree Expand file tree Collapse file tree
src/main/java/com/github/skriptdev/skript/plugin/elements Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ plugins {
88java.sourceCompatibility = JavaVersion .VERSION_25
99
1010group = " com.github.SkriptDev"
11- val projectVersion = " 1.5 .0"
11+ val projectVersion = " 1.6 .0"
1212val hytaleVersion = " 2026.03.26-89796e57b"
1313// You can find Hytale versions on their maven repo:
1414// https://maven.hytale.com/release/com/hypixel/hytale/Server/maven-metadata.xml
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ private static void playerFunctions(SkriptRegistration reg) {
233233 .name ("Player" )
234234 .description ("Returns the player with the given name in the given world." )
235235 .examples ("set {_player} to player(\" ShaneBee\" , world(\" default\" ))" )
236- .since ("INSERT VERSION " )
236+ .since ("1.6.0 " )
237237 .register ();
238238
239239 reg .newJavaFunction ("playerRef" , PlayerRef .class , true )
@@ -245,7 +245,7 @@ private static void playerFunctions(SkriptRegistration reg) {
245245 .name ("PlayerRef" )
246246 .description ("Returns the PlayerRef with the given name." )
247247 .examples ("set {_ref} to playerRef(\" ShaneBee\" )" )
248- .since ("INSERT VERSION " )
248+ .since ("1.6.0 " )
249249 .register ();
250250 }
251251
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ static void register(SkriptRegistration reg) {
2828 reg .newType (Inventory .class , "inventory" , "inventor@y@ies" )
2929 .name ("Inventory" )
3030 .description ("Represents an inventory of an entity or block." ,
31- "**DEPRRECATED as of `INSERT VERSION ` and will be removed in the future.**" ,
31+ "**DEPRRECATED as of `1.6.0 ` and will be removed in the future.**" ,
3232 "Hytale no longer will be using Inventory." )
3333 .since ("1.0.0" )
3434 .toStringFunction (Inventory ::toString )
You can’t perform that action at this time.
0 commit comments