add more new 1.14, 1.15 blocks to containertrust

Closes #642
Closes #698
This commit is contained in:
RoboMWM 2020-01-25 20:59:24 -08:00
parent 6e1a540dd2
commit d7dd5a8e97
2 changed files with 10 additions and 2 deletions

View File

@ -73,7 +73,7 @@
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.14.4-R0.1-SNAPSHOT</version>
<version>1.15.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!--Worldguard dependency-->

View File

@ -1634,7 +1634,15 @@ class PlayerEventHandler implements Listener
clickedBlockType == Material.CHIPPED_ANVIL ||
clickedBlockType == Material.DAMAGED_ANVIL ||
clickedBlockType == Material.CAKE ||
clickedBlockType == Material.SWEET_BERRY_BUSH)))
clickedBlockType == Material.SWEET_BERRY_BUSH ||
clickedBlockType == Material.BEE_NEST ||
clickedBlockType == Material.BEEHIVE ||
clickedBlockType == Material.BEACON ||
clickedBlockType == Material.BELL ||
clickedBlockType == Material.STONECUTTER ||
clickedBlockType == Material.GRINDSTONE ||
clickedBlockType == Material.CARTOGRAPHY_TABLE ||
clickedBlockType == Material.LOOM)))
{
if(playerData == null) playerData = this.dataStore.getPlayerData(player.getUniqueId());