diff --git a/Changelog.txt b/Changelog.txt
index 95398fde2..ee9308412 100644
--- a/Changelog.txt
+++ b/Changelog.txt
@@ -7,6 +7,9 @@ Key:
! Change
- Removal
+Version 2.1.13
+ Fixed a bug where Archery's Arrow Retrieval was using the wrong permission node
+
Version 2.1.12
Salvage config entries are no longer case sensitive
Fixed a bug where Fishing was not rewarding vanilla XP orbs
diff --git a/pom.xml b/pom.xml
index c4ee7870e..03d81c882 100755
--- a/pom.xml
+++ b/pom.xml
@@ -2,7 +2,7 @@
4.0.0
com.gmail.nossr50.mcMMO
mcMMO
- 2.1.12
+ 2.1.13
mcMMO
https://github.com/mcMMO-Dev/mcMMO
diff --git a/src/main/java/com/gmail/nossr50/listeners/WorldListener.java b/src/main/java/com/gmail/nossr50/listeners/WorldListener.java
index 2261fb732..0f184641b 100644
--- a/src/main/java/com/gmail/nossr50/listeners/WorldListener.java
+++ b/src/main/java/com/gmail/nossr50/listeners/WorldListener.java
@@ -62,7 +62,7 @@ public class WorldListener implements Listener {
plugin.getLogger().info("Converting block storage for " + world.getName() + " to a new format.");
- new BlockStoreConversionMain(world).run();
+ //new BlockStoreConversionMain(world).run();
}
/**
diff --git a/src/main/java/com/gmail/nossr50/util/blockmeta/chunkmeta/HashChunkManager.java b/src/main/java/com/gmail/nossr50/util/blockmeta/chunkmeta/HashChunkManager.java
index 7667bbabd..be8f4191d 100755
--- a/src/main/java/com/gmail/nossr50/util/blockmeta/chunkmeta/HashChunkManager.java
+++ b/src/main/java/com/gmail/nossr50/util/blockmeta/chunkmeta/HashChunkManager.java
@@ -48,11 +48,13 @@ public class HashChunkManager implements ChunkManager {
throw new RuntimeException("Wrong class type read for chunk meta data for " + x + ", " + z);
}
catch (IOException e) {
+ e.printStackTrace();
// Assume the format changed
return null;
//throw new RuntimeException("Unable to process chunk meta data for " + x + ", " + z, e);
}
catch (ClassNotFoundException e) {
+ e.printStackTrace();
// Assume the format changed
//System.out.println("[SpoutPlugin] is Unable to find serialized class for " + x + ", " + z + ", " + e.getMessage());
return null;
diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml
index ad103914b..b4c0e7eaa 100644
--- a/src/main/resources/plugin.yml
+++ b/src/main/resources/plugin.yml
@@ -247,12 +247,12 @@ permissions:
children:
mcmmo.ability.archery.skillshot: true
mcmmo.ability.archery.daze: true
- mcmmo.ability.archery.retrieve: true
+ mcmmo.ability.archery.arrowretrieval: true
mcmmo.ability.archery.skillshot:
description: Allows bonus damage from the Archery SkillShot ability
mcmmo.ability.archery.daze:
description: Allows access to the Daze ability
- mcmmo.ability.archery.retrieve:
+ mcmmo.ability.archery.arrowretrieval:
description: Allows tracking & retrieval of arrows
mcmmo.ability.axes.*:
default: false