Skip to content

Commit

Permalink
Prepare for release of 2.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneBeee committed Dec 11, 2020
1 parent c442d18 commit da691e2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
groupid=ch.njol
name=skript
version=2.5.2
version=2.5.3
4 changes: 2 additions & 2 deletions src/main/java/ch/njol/skript/events/SimpleEvents.java
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ public class SimpleEvents {
Skript.registerEvent("Entity Portal", SimpleEvent.class, EntityPortalEvent.class, "entity portal")
.description("Called when an entity uses a nether or end portal. <a href='effects.html#EffCancelEvent'>Cancel the event</a> to prevent the entity from teleporting.")
.examples("on entity portal:", "\tbroadcast \"A %type of event-entity% has entered a portal!")
.since("INSERT VERSION");
.since("2.5.3");
Skript.registerEvent("Portal", SimpleEvent.class, PlayerPortalEvent.class, "[player] portal")
.description("Called when a player uses a nether or end portal. <a href='effects.html#EffCancelEvent'>Cancel the event</a> to prevent the player from teleporting.")
.examples("on player portal:")
Expand Down Expand Up @@ -338,7 +338,7 @@ public class SimpleEvents {
"In Minecraft 1.14+, you can use <a href='expressions.html#ExprEntity'>the player</a> in this event.", "Please note that there may not always be a player (or other entity) in this event.")
.examples("on portal create:")
.requiredPlugins("Minecraft 1.14+ (event-entity support)")
.since("1.0, INSERT VERSION (event-entity support)");
.since("1.0, 2.5.3 (event-entity support)");
Skript.registerEvent("Projectile Hit", SimpleEvent.class, ProjectileHitEvent.class, "projectile hit")
.description("Called when a projectile hits an entity or a block.",
"Use the <a href='#damage'>damage event</a> with a <a href='conditions.html#CondIsSet'>check</a> for a <a href='expressions.html#ExprEntity'>projectile</a> " +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"on break of diamond ore:",
"\tif tool of player = diamond pickaxe:",
"\t\tadd 100 to dropped experience"})
@Since("2.1, INSERT VERSION (block break event)")
@Since("2.1, 2.5.3 (block break event)")
@Events({"experience spawn", "break / mine"})
public class ExprExperience extends SimpleExpression<Experience> {
static {
Expand Down

0 comments on commit da691e2

Please sign in to comment.