Skip to content

Commit

Permalink
v2.1.8.5
Browse files Browse the repository at this point in the history
illegal forward reference 문제 해결
  • Loading branch information
Daybreak365 committed Jun 27, 2020
1 parent bdb5a5c commit cb1a037
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
22 changes: 11 additions & 11 deletions modules/Plugin/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>AbilityWar-Parent</artifactId>
<groupId>daybreak.abilitywar</groupId>
<version>${revision}</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>Plugin</artifactId>
<version>${revision}</version>
<build>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>AbilityWar-Parent</artifactId>
<groupId>daybreak.abilitywar</groupId>
<version>${revision}</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>Plugin</artifactId>
<version>${revision}</version>
<build>
<resources>
<resource>
<filtering>true</filtering>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,14 @@ protected void onEnd() {
}

};

private final ActionbarChannel actionbarChannel = newActionbarChannel();

private void sendMessage(String message) {
getPlayer().sendMessage("§5[§d교주§5] §f" + message);
}

private final CooldownTimer cooldownTimer = new CooldownTimer(CooldownConfig.getValue());
private final DurationTimer skill = new DurationTimer(10, cooldownTimer) {
@Override
protected void onDurationStart() {
Expand All @@ -107,14 +115,6 @@ protected void onDurationSilentEnd() {
}
};

private final ActionbarChannel actionbarChannel = newActionbarChannel();

private void sendMessage(String message) {
getPlayer().sendMessage("§5[§d교주§5] §f" + message);
}

private final CooldownTimer cooldownTimer = new CooldownTimer(CooldownConfig.getValue());

private boolean inquisition = false;

private void newReligion(String name) {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<encoding>UTF-8</encoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<revision>2.1.8.4</revision>
<revision>2.1.8.5</revision>
<bukkit-api.version>1.16.1-R0.1-SNAPSHOT</bukkit-api.version>
</properties>

Expand Down

0 comments on commit cb1a037

Please sign in to comment.