mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
NPE fix for McMMOPlayerExperienceEvent
This commit is contained in:
parent
4f08c69557
commit
49f1154e65
@ -6,6 +6,7 @@ Version 2.1.182
|
|||||||
Added some safety so that mcMMO automatic save interval is never more frequent than 1 minute
|
Added some safety so that mcMMO automatic save interval is never more frequent than 1 minute
|
||||||
Removed a few silent exceptions for scoreboards & mcMMO
|
Removed a few silent exceptions for scoreboards & mcMMO
|
||||||
Added warning about UltraPermissions to mcMMO
|
Added warning about UltraPermissions to mcMMO
|
||||||
|
Fixed a potential NPE in McMMOPlayerExperienceEvent
|
||||||
|
|
||||||
Version 2.1.181
|
Version 2.1.181
|
||||||
mcMMO no longer pointlessly tries to check for missing UUIDs for FlatFile database
|
mcMMO no longer pointlessly tries to check for missing UUIDs for FlatFile database
|
||||||
|
@ -29,7 +29,13 @@ public abstract class McMMOPlayerExperienceEvent extends PlayerEvent implements
|
|||||||
protected McMMOPlayerExperienceEvent(Player player, PrimarySkillType skill, XPGainReason xpGainReason) {
|
protected McMMOPlayerExperienceEvent(Player player, PrimarySkillType skill, XPGainReason xpGainReason) {
|
||||||
super(player);
|
super(player);
|
||||||
this.skill = skill;
|
this.skill = skill;
|
||||||
this.skillLevel = UserManager.getPlayer(player).getSkillLevel(skill);
|
|
||||||
|
if(UserManager.getPlayer(player) != null) {
|
||||||
|
this.skillLevel = UserManager.getPlayer(player).getSkillLevel(skill);
|
||||||
|
} else {
|
||||||
|
this.skillLevel = 0;
|
||||||
|
}
|
||||||
|
|
||||||
this.xpGainReason = xpGainReason;
|
this.xpGainReason = xpGainReason;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,10 +74,6 @@ import java.util.ArrayList;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class mcMMO extends JavaPlugin {
|
public class mcMMO extends JavaPlugin {
|
||||||
public static final String ULTRA_PERMISSONS = "UltraPermissons";
|
|
||||||
public static final String UP_WARNING_2 = "Stop using " + ULTRA_PERMISSONS + " with mcMMO immediately!";
|
|
||||||
public static final String UP_WARNING_1 = "mcMMO has detected " + ULTRA_PERMISSONS + " on your server, users have reported a severe plugin conflict between these two plugins which severely degrades server performance";
|
|
||||||
public static final String UP_WARNING_3 = "The author of UltraPermissions has passed away and its unlikely this issue will ever be solved";
|
|
||||||
/* Managers */
|
/* Managers */
|
||||||
private static PlatformManager platformManager;
|
private static PlatformManager platformManager;
|
||||||
private static ChunkManager placeStore;
|
private static ChunkManager placeStore;
|
||||||
@ -152,6 +148,11 @@ public class mcMMO extends JavaPlugin {
|
|||||||
|
|
||||||
public static FixedMetadataValue metadataValue;
|
public static FixedMetadataValue metadataValue;
|
||||||
|
|
||||||
|
public static final String ULTRA_PERMISSONS = "UltraPermissons";
|
||||||
|
public static final String UP_WARNING_2 = "Stop using " + ULTRA_PERMISSONS + " with mcMMO immediately!";
|
||||||
|
public static final String UP_WARNING_1 = "mcMMO has detected " + ULTRA_PERMISSONS + " on your server, users have reported a severe plugin conflict between these two plugins which severely degrades server performance";
|
||||||
|
public static final String UP_WARNING_3 = "The author of UltraPermissions has passed away and its unlikely this issue will ever be solved";
|
||||||
|
|
||||||
public mcMMO() {
|
public mcMMO() {
|
||||||
p = this;
|
p = this;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user