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>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok-maven-plugin</artifactId>
|
||||
<version>1.18.10.0</version>
|
||||
<version>1.18.12.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>generate-sources</phase>
|
||||
|
@ -102,7 +102,7 @@
|
|||
<!-- Build the javadoc -->
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>3.1.1</version>
|
||||
<version>3.2.0</version>
|
||||
<configuration>
|
||||
<sourceFileIncludes>
|
||||
<include>nl/SBDeveloper/V10Lift/API/*.java</include>
|
||||
|
@ -181,7 +181,7 @@
|
|||
<dependency>
|
||||
<groupId>nl.SBDevelopment</groupId>
|
||||
<artifactId>SBUtilities</artifactId>
|
||||
<version>1.4</version>
|
||||
<version>1.7</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ public class SignChangeListener implements Listener {
|
|||
@EventHandler(priority = EventPriority.HIGH, ignoreCancelled = true)
|
||||
public void onSignChange(SignChangeEvent e) {
|
||||
String[] lines = e.getLines();
|
||||
if (!lines[0].equalsIgnoreCase("[v10lift]")) return;
|
||||
if (!lines[0].equalsIgnoreCase(ConfigUtil.getConfigText("SignText"))) return;
|
||||
|
||||
Player p = e.getPlayer();
|
||||
if (lines[1].isEmpty()) {
|
||||
|
|
Loading…
Reference in a new issue