Browse Source

no move buff while flying

lakebane-strongholds
FatBoy-DOTC 2 months ago
parent
commit
67e55ab0a0
  1. 7
      src/engine/objects/PlayerCharacter.java

7
src/engine/objects/PlayerCharacter.java

@ -4828,8 +4828,11 @@ public class PlayerCharacter extends AbstractCharacter { @@ -4828,8 +4828,11 @@ public class PlayerCharacter extends AbstractCharacter {
}
if(this.isFlying()){
if(this.getBonuses() != null && this.getBonuses().getFloat(ModType.Speed,SourceType.BUFF) > 0){
GroundPlayer(this);
if(this.getBonuses() != null){
float speedMod = this.getBonuses().getFloatPercentPositive(ModType.Speed,SourceType.None);
if(speedMod > 0) {
GroundPlayer(this);
}
}
}

Loading…
Cancel
Save