2.1.13 Release

This commit is contained in:
nossr50 2019-03-08 15:34:35 -08:00
parent ba88831c88
commit 6f15cd4005
5 changed files with 9 additions and 4 deletions

View File

@ -7,6 +7,9 @@ Key:
! Change ! Change
- Removal - Removal
Version 2.1.13
Fixed a bug where Archery's Arrow Retrieval was using the wrong permission node
Version 2.1.12 Version 2.1.12
Salvage config entries are no longer case sensitive Salvage config entries are no longer case sensitive
Fixed a bug where Fishing was not rewarding vanilla XP orbs Fixed a bug where Fishing was not rewarding vanilla XP orbs

View File

@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.gmail.nossr50.mcMMO</groupId> <groupId>com.gmail.nossr50.mcMMO</groupId>
<artifactId>mcMMO</artifactId> <artifactId>mcMMO</artifactId>
<version>2.1.12</version> <version>2.1.13</version>
<name>mcMMO</name> <name>mcMMO</name>
<url>https://github.com/mcMMO-Dev/mcMMO</url> <url>https://github.com/mcMMO-Dev/mcMMO</url>
<scm> <scm>

View File

@ -62,7 +62,7 @@ public class WorldListener implements Listener {
plugin.getLogger().info("Converting block storage for " + world.getName() + " to a new format."); plugin.getLogger().info("Converting block storage for " + world.getName() + " to a new format.");
new BlockStoreConversionMain(world).run(); //new BlockStoreConversionMain(world).run();
} }
/** /**

View File

@ -48,11 +48,13 @@ public class HashChunkManager implements ChunkManager {
throw new RuntimeException("Wrong class type read for chunk meta data for " + x + ", " + z); throw new RuntimeException("Wrong class type read for chunk meta data for " + x + ", " + z);
} }
catch (IOException e) { catch (IOException e) {
e.printStackTrace();
// Assume the format changed // Assume the format changed
return null; return null;
//throw new RuntimeException("Unable to process chunk meta data for " + x + ", " + z, e); //throw new RuntimeException("Unable to process chunk meta data for " + x + ", " + z, e);
} }
catch (ClassNotFoundException e) { catch (ClassNotFoundException e) {
e.printStackTrace();
// Assume the format changed // Assume the format changed
//System.out.println("[SpoutPlugin] is Unable to find serialized class for " + x + ", " + z + ", " + e.getMessage()); //System.out.println("[SpoutPlugin] is Unable to find serialized class for " + x + ", " + z + ", " + e.getMessage());
return null; return null;

View File

@ -247,12 +247,12 @@ permissions:
children: children:
mcmmo.ability.archery.skillshot: true mcmmo.ability.archery.skillshot: true
mcmmo.ability.archery.daze: true mcmmo.ability.archery.daze: true
mcmmo.ability.archery.retrieve: true mcmmo.ability.archery.arrowretrieval: true
mcmmo.ability.archery.skillshot: mcmmo.ability.archery.skillshot:
description: Allows bonus damage from the Archery SkillShot ability description: Allows bonus damage from the Archery SkillShot ability
mcmmo.ability.archery.daze: mcmmo.ability.archery.daze:
description: Allows access to the Daze ability description: Allows access to the Daze ability
mcmmo.ability.archery.retrieve: mcmmo.ability.archery.arrowretrieval:
description: Allows tracking & retrieval of arrows description: Allows tracking & retrieval of arrows
mcmmo.ability.axes.*: mcmmo.ability.axes.*:
default: false default: false