Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
FranKusmiruk committed Sep 30, 2019
1 parent 177681c commit fc1e657
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,3 +1,3 @@
groupid=ch.njol
name=skript
version=2.4-beta7
version=2.4-beta8
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/effects/EffCancelDrops.java
Expand Up @@ -47,7 +47,7 @@
"",
"on break of a coal ore:",
"\tcancel the experience drops"})
@Since("INSERT VERSION")
@Since("2.4")
@RequiredPlugins("1.12.2 or newer (cancelling item drops of blocks)")
@Events({"death", "break / mine"})
public class EffCancelDrops extends Effect {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/effects/EffKeepInventory.java
Expand Up @@ -40,7 +40,7 @@
@Examples({"on death of a player:",
"\tif the victim is an op:",
"\t\tkeep the inventory and experiences"})
@Since("INSERT VERSION")
@Since("2.4")
@Events("death")
public class EffKeepInventory extends Effect {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/events/EvtLevel.java
Expand Up @@ -35,7 +35,7 @@ public class EvtLevel extends SkriptEvent {
Skript.registerEvent("Level Change", EvtLevel.class, PlayerLevelChangeEvent.class, "[player] level (change|1¦up|-1¦down)")
.description("Called when a player's <a href='expressions.html#ExprLevel'>level</a> changes, e.g. by gathering experience or by enchanting something.")
.examples("on level change:")
.since("1.0, INSERT VERSION (level up/down)");
.since("1.0, 2.4 (level up/down)");
}

@SuppressWarnings("null")
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/expressions/ExprPortal.java
Expand Up @@ -47,7 +47,7 @@
@Examples({"on portal creation:",
" loop portal blocks:",
" broadcast \"%loop-block% is part of a portal!\""})
@Since("INSERT VERSION")
@Since("2.4")
@Events("portal_create")
public class ExprPortal extends SimpleExpression<Block> {

Expand Down
Expand Up @@ -50,7 +50,7 @@
@Examples({"on right click:",
" if event-block is spawner:",
" send \"Spawner's type is %target block's entity type%\""})
@Since("INSERT VERSION")
@Since("2.4")
public class ExprSpawnerType extends SimplePropertyExpression<Block, EntityData> {

private static final Material MATERIAL_SPAWNER = Aliases.javaItemType("spawner").getMaterial();
Expand Down

2 comments on commit fc1e657

@Blox61

This comment was marked as off-topic.

@Blueyescat
Copy link
Contributor

@Blueyescat Blueyescat commented on fc1e657 Oct 8, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Blox61 You are not in the right place to report issues. Go to https://github.com/SkriptLang/Skript/issues
and click New Issue

Also the log you sent is not useful. It just says that you can't execute the command because Skript is disabled. Why is it disabled? Because something went wrong while it is starting. There are errors about Skript in the console while the server is starting, show them in the issue you will create at the page i linked ^^

Also use services like https://gist.github.com or https://paste.ubuntu.com to send long logs.

Please sign in to comment.