Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneBeee committed Mar 1, 2020
1 parent 4563dcd commit f8e7da9
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 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-alpha1
version=2.5-alpha2
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/conditions/CondIsCharged.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
@Description("Checks if a creeper is charged (powered).")
@Examples({"if the last spawned creeper is charged:",
"\tbroadcast \"A charged creeper is at %location of last spawned creeper%\""})
@Since("INSERT VERSION")
@Since("2.5")
public class CondIsCharged extends PropertyCondition<LivingEntity> {

static {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/effects/EffChargeCreeper.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
@Description("Charges or uncharges a creeper. A creeper is charged when it has been struck by lightning.")
@Examples({"on spawn of creeper:",
"\tcharge the event-entity"})
@Since("INSERT VERSION")
@Since("2.5")
public class EffChargeCreeper extends Effect {

static {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/effects/EffPotion.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"remove haste from the victim",
"on join:",
" apply potion of strength of tier {strength.%player%} to the player for 999 days"})
@Since("2.0, 2.2-dev27 (ambient and particle-less potion effects), INSERT VERSION (replacing existing effect)")
@Since("2.0, 2.2-dev27 (ambient and particle-less potion effects), 2.5 (replacing existing effect)")
public class EffPotion extends Effect {
static {
Skript.registerEffect(EffPotion.class,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
@Name("Arrows Stuck")
@Description("The number of arrows stuck in a living entity.")
@Examples("set arrows stuck in player to 5")
@Since("INSERT VERSION")
@Since("2.5")
public class ExprArrowsStuck extends SimplePropertyExpression<LivingEntity, Number> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
@Name("Creeper Max Fuse Ticks")
@Description("The max fuse ticks that a creeper has.")
@Examples("set target entity's max fuse ticks to 20 #1 second")
@Since("INSERT VERSION")
@Since("2.5")
public class ExprCreeperMaxFuseTicks extends SimplePropertyExpression<LivingEntity, Number> {

static {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/expressions/ExprEntities.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"give a diamond to all ops",
"heal all tamed wolves in radius 2000 around {town center}",
"delete all monsters in chunk at player"})
@Since("1.2.1, INSERT VERSION (chunks)")
@Since("1.2.1, 2.5 (chunks)")
public class ExprEntities extends SimpleExpression<Entity> {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
@Description("The number of ticks that an entity is invulnerable to damage for.")
@Examples({"on damage:",
" set victim's invulnerability ticks to 20 #Victim will not take damage for the next second"})
@Since("INSERT VERSION")
@Since("2.5")
public class ExprNoDamageTicks extends SimplePropertyExpression<LivingEntity, Number> {

static {
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/ch/njol/skript/expressions/LitNewLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
@Name("New Line")
@Description("Returns a line break separator.")
@Examples("send \"Hello%nl%Goodbye!\" to player")
@Since("INSERT VERSION")
@Since("2.5")
public class LitNewLine extends SimpleLiteral<String> {

static {
Expand All @@ -56,4 +56,4 @@ public boolean init(final Expression<?>[] exprs, final int matchedPattern, final
public String toString(@Nullable Event e, boolean debug) {
return "newline";
}
}
}

0 comments on commit f8e7da9

Please sign in to comment.