release-1.3 #13

Merged
MagicBot merged 40 commits from release-1.3 into master 2022-07-13 17:55:56 +00:00
2 changed files with 6 additions and 5 deletions
Showing only changes of commit 87e18351be - Show all commits
+1 -1
View File
@@ -374,7 +374,7 @@ public enum MovementManager {
// if stam less that 2 - time to force a landing
if (pc.getStamina() < 10f || !canFly) {
PlayerCharacter.GroundPlayer(pc);
// dont call stop movement here as we want to
// preserve endloc
//pc.stopMovement();
+5 -4
View File
@@ -4781,10 +4781,11 @@ public void dismissNecroPets() {
}finally{
this.updateLock.writeLock().unlock();
}
if(AbstractCharacter.CanFly(this) == false && this.altitude > 0)
{
GroundPlayer(this);
}
//temp removal
//if(AbstractCharacter.CanFly(this) == false && this.altitude > 0)
//{
// GroundPlayer(this);
//}
}
}
@Override