Skip to content
This repository has been archived by the owner on Apr 8, 2022. It is now read-only.

Commit

Permalink
compat with Denizen core change
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Nov 28, 2020
1 parent c0f4217 commit e556cbe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<bukkit.version>1.16.3-R0.1-SNAPSHOT</bukkit.version>
<denizen.version>1.1.7-SNAPSHOT</denizen.version>
<bukkit.version>1.16.4-R0.1-SNAPSHOT</bukkit.version>
<denizen.version>1.1.8-SNAPSHOT</denizen.version>
</properties>

<issueManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public class PostRequestScriptEvent extends BasicRequestScriptEvent {
//
// @Plugin Webizen
// -->

public PostRequestScriptEvent() {
instance = this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ protected FakeScriptQueue() {
}

@Override
protected void onStart() {
public void onStart() {
throw new IllegalStateException("This is a fake queue!");
}

Expand All @@ -19,7 +19,7 @@ protected void onStop() {
}

@Override
protected boolean shouldRevolve() {
public boolean shouldRevolve() {
throw new IllegalStateException("This is a fake queue!");
}
}

0 comments on commit e556cbe

Please sign in to comment.