Merge remote-tracking branch 'origin/master'

This commit is contained in:
stijnb1234 2020-03-16 10:35:18 +01:00
commit 1f144220a6
2 changed files with 4 additions and 4 deletions

View file

@ -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>

View file

@ -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()) {