mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 05:06:45 +01:00
Fixing Taming XP
This commit is contained in:
parent
3155550931
commit
952ee9556a
@ -1,3 +1,6 @@
|
||||
Version 2.1.98
|
||||
Fixed a bug that prevented Taming XP from combat
|
||||
|
||||
Version 2.1.97
|
||||
mcMMO is compatible with 1.14.4 (Didn't require any changes)
|
||||
Fixed a NPE that could occur if a pet participated in combat and its master's mcMMO data was not available
|
||||
|
@ -173,7 +173,7 @@ public final class CombatUtils {
|
||||
double initialDamage = event.getDamage();
|
||||
double finalDamage = initialDamage;
|
||||
|
||||
if(master != null && !master.isOnline() && master.isValid()) {
|
||||
if(master != null && master.isOnline() && master.isValid()) {
|
||||
McMMOPlayer mcMMOPlayer = UserManager.getPlayer(master);
|
||||
|
||||
//Make sure the profiles been loaded
|
||||
|
Loading…
Reference in New Issue
Block a user