Add axe actionable options

This commit is contained in:
William Blake Galbreath
2021-07-06 01:01:33 -05:00
parent a0fae1b779
commit 89c9c902b1
155 changed files with 924 additions and 720 deletions

View File

@@ -43,10 +43,10 @@ index 00a5c65439a30499156a10b1822760fe48ee7776..3b68981645eb70df8828d437411564e8
public static int seedFeatureBamboo = -1;
diff --git a/src/main/java/net/pl3x/purpur/PurpurWorldConfig.java b/src/main/java/net/pl3x/purpur/PurpurWorldConfig.java
index 3167b821798428e955daa421ca121b3403bc7ff4..a9fd8ebf763b379a203c17a54fce5e841249d5ca 100644
index 56bed5e58d49196f1f94660dbd88a9fae99a9be7..0cb4b3d9084646b493418dea60323752db3f13a0 100644
--- a/src/main/java/net/pl3x/purpur/PurpurWorldConfig.java
+++ b/src/main/java/net/pl3x/purpur/PurpurWorldConfig.java
@@ -153,6 +153,8 @@ public class PurpurWorldConfig {
@@ -156,6 +156,8 @@ public class PurpurWorldConfig {
public List<Item> itemImmuneToExplosion = new ArrayList<>();
public List<Item> itemImmuneToFire = new ArrayList<>();
public List<Item> itemImmuneToLightning = new ArrayList<>();
@@ -55,7 +55,7 @@ index 3167b821798428e955daa421ca121b3403bc7ff4..a9fd8ebf763b379a203c17a54fce5e84
private void itemSettings() {
itemImmuneToCactus.clear();
getList("gameplay-mechanics.item.immune.cactus", new ArrayList<>()).forEach(key -> {
@@ -190,6 +192,8 @@ public class PurpurWorldConfig {
@@ -193,6 +195,8 @@ public class PurpurWorldConfig {
Item item = Registry.ITEM.get(new ResourceLocation(key.toString()));
if (item != Items.AIR) itemImmuneToLightning.add(item);
});