mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-25 22:56:45 +01:00
Fix a NPE in MobHealthDisplayUpdateTask
Band aid for broken isValid() function. Fixes #1396
This commit is contained in:
parent
8e02b57369
commit
3c5bd3cedd
@ -20,7 +20,7 @@ public class MobHealthDisplayUpdaterTask extends BukkitRunnable {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
if (target.isValid()) {
|
if (target != null && target.isValid()) {
|
||||||
target.setCustomNameVisible(oldNameVisible);
|
target.setCustomNameVisible(oldNameVisible);
|
||||||
target.setCustomName(oldName);
|
target.setCustomName(oldName);
|
||||||
target.removeMetadata(mcMMO.customNameKey, mcMMO.p);
|
target.removeMetadata(mcMMO.customNameKey, mcMMO.p);
|
||||||
|
Loading…
Reference in New Issue
Block a user