mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-25 14:46:46 +01:00
commit
e4d081f14b
@ -24,10 +24,7 @@ public class DatabaseAPI {
|
||||
public boolean doesPlayerExistInDB(UUID uuid) {
|
||||
PlayerProfile playerProfile = mcMMO.getDatabaseManager().loadPlayerProfile(uuid);
|
||||
|
||||
if(playerProfile.isLoaded())
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
return playerProfile.isLoaded();
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -491,10 +491,7 @@ public class McMMOPlayer {
|
||||
if(hasReachedPowerLevelCap())
|
||||
return true;
|
||||
|
||||
if(getSkillLevel(primarySkillType) >= Config.getInstance().getLevelCap(primarySkillType))
|
||||
return true;
|
||||
|
||||
return false;
|
||||
return getSkillLevel(primarySkillType) >= Config.getInstance().getLevelCap(primarySkillType);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -62,10 +62,7 @@ public class EventUtils {
|
||||
* @return true if damage is NOT from an unnatural mcMMO skill (such as bleed DOTs)
|
||||
*/
|
||||
public static boolean isDamageFromMcMMOComplexBehaviour(Event event) {
|
||||
if (event instanceof FakeEntityDamageEvent) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
return event instanceof FakeEntityDamageEvent;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -80,10 +80,7 @@ public class RandomChanceUtil
|
||||
public static boolean rollDice(double chanceOfSuccess, int bound) {
|
||||
Random random = new Random();
|
||||
|
||||
if (chanceOfSuccess > random.nextInt(bound))
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
return chanceOfSuccess > random.nextInt(bound);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -777,18 +777,14 @@ public final class CombatUtils {
|
||||
}
|
||||
|
||||
// It may seem a bit redundant but we need a check here to prevent bleed from being applied in applyAbilityAoE()
|
||||
if (getFakeDamageFinalResult(player, entity, 1.0) == 0) {
|
||||
return false;
|
||||
}
|
||||
return getFakeDamageFinalResult(player, entity, 1.0) != 0;
|
||||
}
|
||||
else if (entity instanceof Tameable) {
|
||||
if (isFriendlyPet(player, (Tameable) entity)) {
|
||||
// isFriendlyPet ensures that the Tameable is: Tamed, owned by a player, and the owner is in the same party
|
||||
// So we can make some assumptions here, about our casting and our check
|
||||
Player owner = (Player) ((Tameable) entity).getOwner();
|
||||
if (!(Permissions.friendlyFire(player) && Permissions.friendlyFire(owner))) {
|
||||
return false;
|
||||
}
|
||||
return Permissions.friendlyFire(player) && Permissions.friendlyFire(owner);
|
||||
}
|
||||
}
|
||||
|
||||
@ -850,11 +846,7 @@ public final class CombatUtils {
|
||||
public static boolean canDamage(Entity attacker, Entity target, DamageCause damageCause, double damage) {
|
||||
EntityDamageEvent damageEvent = sendEntityDamageEvent(attacker, target, damageCause, damage);
|
||||
|
||||
if (damageEvent.isCancelled()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
return !damageEvent.isCancelled();
|
||||
}
|
||||
|
||||
public static EntityDamageEvent sendEntityDamageEvent(Entity attacker, Entity target, DamageCause damageCause, double damage) {
|
||||
|
Loading…
Reference in New Issue
Block a user