Skip to content

Commit

Permalink
Prepare for Release (1.6.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
APickledWalrus committed Feb 9, 2024
1 parent 583ac4c commit d50ec74
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# skript-placeholders
Placeholder integration for Skript. This addon requires Skript 2.7.2.
Placeholder integration for Skript. This addon requires Skript 2.7.3.


This addon allows you to use and register placeholders with PlaceholderAPI and/or MVdWPlaceholderAPI.
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group 'io.github.apickledwalrus'
version '1.6-dev'
version '1.6.0'

compileJava.options.encoding = 'UTF-8'

Expand All @@ -28,7 +28,7 @@ repositories {
dependencies {
implementation 'org.eclipse.jdt:org.eclipse.jdt.annotation:2.2.600'
implementation 'org.spigotmc:spigot-api:1.13.2-R0.1-SNAPSHOT'
implementation ('com.github.SkriptLang:Skript:2.7.2') {
implementation ('com.github.SkriptLang:Skript:2.7.3') {
transitive = false
}
implementation ('me.clip:placeholderapi:2.11.3')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"\t# Placeholder is \"{skriptplaceholders_author}\"",
"\tset the result to \"APickledWalrus\""
})
@Since("1.0, 1.3 (MVdWPlaceholderAPI support), INSERT VERSION (object support)")
@Since("1.0, 1.3 (MVdWPlaceholderAPI support), 1.6.0 (using any type support)")
@Events("Placeholder Request")
public class ExprPlaceholderResult extends SimpleExpression<String> {

Expand Down Expand Up @@ -76,8 +76,8 @@ public void change(Event event, @Nullable Object[] delta, ChangeMode mode) {
placeholderEvent.setResult(Classes.toString(delta[0]));
}
break;
case RESET:
case DELETE:
case RESET:
placeholderEvent.setResult(null);
break;
default:
Expand Down

0 comments on commit d50ec74

Please sign in to comment.