mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
2.1.73
This commit is contained in:
parent
caec01e9fa
commit
83b55db4f8
@ -1,3 +1,6 @@
|
|||||||
|
Version 2.1.73
|
||||||
|
Fixed a NPE that could occur if an entire skill was disabled in coreskills.yml
|
||||||
|
|
||||||
Version 2.1.72
|
Version 2.1.72
|
||||||
Fixed a NPE if a server shutdown with no player data needing to be saved (the error is harmless but spammy)
|
Fixed a NPE if a server shutdown with no player data needing to be saved (the error is harmless but spammy)
|
||||||
Fixed a NPE that could occur if Roll was disabled in coreskills.yml
|
Fixed a NPE that could occur if Roll was disabled in coreskills.yml
|
||||||
|
2
pom.xml
2
pom.xml
@ -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.72</version>
|
<version>2.1.73</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>
|
||||||
|
@ -568,6 +568,8 @@ public class mcMMO extends JavaPlugin {
|
|||||||
* Acrobatics skills
|
* Acrobatics skills
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
InteractionManager.initMaps(); //Init maps
|
||||||
|
|
||||||
if(CoreSkillsConfig.getInstance().isPrimarySkillEnabled(PrimarySkillType.ACROBATICS))
|
if(CoreSkillsConfig.getInstance().isPrimarySkillEnabled(PrimarySkillType.ACROBATICS))
|
||||||
{
|
{
|
||||||
System.out.println("[mcMMO]" + " enabling Acrobatics Skills");
|
System.out.println("[mcMMO]" + " enabling Acrobatics Skills");
|
||||||
@ -575,7 +577,6 @@ public class mcMMO extends JavaPlugin {
|
|||||||
//TODO: Should do this differently
|
//TODO: Should do this differently
|
||||||
Roll roll = new Roll();
|
Roll roll = new Roll();
|
||||||
CoreSkillsConfig.getInstance().isSkillEnabled(roll);
|
CoreSkillsConfig.getInstance().isSkillEnabled(roll);
|
||||||
InteractionManager.initMaps();
|
|
||||||
InteractionManager.registerSubSkill(new Roll());
|
InteractionManager.registerSubSkill(new Roll());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user