Merge pull request #183 from Sataniel98/1.14

Update to MC 1.14
This commit is contained in:
Sn0wStorm 2019-06-27 18:39:12 +02:00 committed by GitHub
commit f4af4c3f00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
<groupId>com.dre</groupId>
<artifactId>brewery</artifactId>
<version>1.7.1</version>
<version>1.7.2</version>
<name>Brewery</name>
<properties>
@ -110,7 +110,7 @@
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.13.2-R0.1-SNAPSHOT</version>
<version>1.14-R0.1-SNAPSHOT</version>
<scope>provided</scope>
<exclusions>
<exclusion>

View File

@ -101,7 +101,7 @@ public class LegacyUtil {
}
public static boolean isSign(Material type) {
return type == Material.SIGN || type == Material.WALL_SIGN || (!P.use1_13 && type == SIGN_POST);
return type.name().endsWith("SIGN") || (!P.use1_13 && type == SIGN_POST);
}
// LAVA and STATIONARY_LAVA are merged as of 1.13