浏览代码

BlockCracker fix for infested stone bricks

nossr50 5 年之前
父节点
当前提交
7b8c90d362
共有 2 个文件被更改,包括 4 次插入0 次删除
  1. 2 0
      Changelog.txt
  2. 2 0
      src/main/java/com/gmail/nossr50/util/MaterialMapStore.java

+ 2 - 0
Changelog.txt

@@ -1,4 +1,6 @@
 Version 2.1.113
+    Fixed bug where BlockCracker didn't work on infested_stone_bricks
+    Fixed a bug where beacons could be duplicated
     Check player's PTP world permissions before executing a party teleport
     Use ThreadedLocalRandom for RNG utils, random is seeded, thus creating new instances of Random breaks randomness
 

+ 2 - 0
src/main/java/com/gmail/nossr50/util/MaterialMapStore.java

@@ -170,6 +170,8 @@ public class MaterialMapStore {
     private void fillBlockCrackerWhiteList()
     {
         blockCrackerWhiteList.add("stone_bricks");
+        blockCrackerWhiteList.add("infested_stone_bricks");
+
     }
 
     private void fillHerbalismAbilityBlackList()