mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
2.1.74
This commit is contained in:
parent
83b55db4f8
commit
1297b45ef8
@ -1,3 +1,6 @@
|
|||||||
|
Version 2.1.74
|
||||||
|
Fixed a NPE that could occur during certain events if a skill was disabled in coreskills.yml (Sorry!)
|
||||||
|
|
||||||
Version 2.1.73
|
Version 2.1.73
|
||||||
Fixed a NPE that could occur if an entire skill was disabled in coreskills.yml
|
Fixed a NPE that could occur if an entire skill 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.73</version>
|
<version>2.1.74</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>
|
||||||
|
@ -75,6 +75,9 @@ public class InteractionManager {
|
|||||||
*/
|
*/
|
||||||
public static void processEvent(Event event, mcMMO plugin, InteractType curInteractType)
|
public static void processEvent(Event event, mcMMO plugin, InteractType curInteractType)
|
||||||
{
|
{
|
||||||
|
if(interactRegister.get(curInteractType) == null)
|
||||||
|
return;
|
||||||
|
|
||||||
for(Interaction interaction : interactRegister.get(curInteractType))
|
for(Interaction interaction : interactRegister.get(curInteractType))
|
||||||
{
|
{
|
||||||
interaction.doInteraction(event, plugin);
|
interaction.doInteraction(event, plugin);
|
||||||
|
Loading…
Reference in New Issue
Block a user