Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
1f144220a6
2 changed files with 4 additions and 4 deletions
6
pom.xml
6
pom.xml
|
@ -89,7 +89,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.projectlombok</groupId>
|
<groupId>org.projectlombok</groupId>
|
||||||
<artifactId>lombok-maven-plugin</artifactId>
|
<artifactId>lombok-maven-plugin</artifactId>
|
||||||
<version>1.18.10.0</version>
|
<version>1.18.12.0</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<phase>generate-sources</phase>
|
<phase>generate-sources</phase>
|
||||||
|
@ -102,7 +102,7 @@
|
||||||
<!-- Build the javadoc -->
|
<!-- Build the javadoc -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<version>3.1.1</version>
|
<version>3.2.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<sourceFileIncludes>
|
<sourceFileIncludes>
|
||||||
<include>nl/SBDeveloper/V10Lift/API/*.java</include>
|
<include>nl/SBDeveloper/V10Lift/API/*.java</include>
|
||||||
|
@ -181,7 +181,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>nl.SBDevelopment</groupId>
|
<groupId>nl.SBDevelopment</groupId>
|
||||||
<artifactId>SBUtilities</artifactId>
|
<artifactId>SBUtilities</artifactId>
|
||||||
<version>1.4</version>
|
<version>1.7</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ public class SignChangeListener implements Listener {
|
||||||
@EventHandler(priority = EventPriority.HIGH, ignoreCancelled = true)
|
@EventHandler(priority = EventPriority.HIGH, ignoreCancelled = true)
|
||||||
public void onSignChange(SignChangeEvent e) {
|
public void onSignChange(SignChangeEvent e) {
|
||||||
String[] lines = e.getLines();
|
String[] lines = e.getLines();
|
||||||
if (!lines[0].equalsIgnoreCase("[v10lift]")) return;
|
if (!lines[0].equalsIgnoreCase(ConfigUtil.getConfigText("SignText"))) return;
|
||||||
|
|
||||||
Player p = e.getPlayer();
|
Player p = e.getPlayer();
|
||||||
if (lines[1].isEmpty()) {
|
if (lines[1].isEmpty()) {
|
||||||
|
|
Loading…
Reference in a new issue