Bindloc not adjusted for pets.

This commit is contained in:
2023-08-26 15:21:50 -04:00
parent d8d5e4a3c4
commit 645aec853e
+7 -3
View File
@@ -1675,9 +1675,13 @@ public class Mob extends AbstractIntelligenceAgent {
// Handle Mobiles within buildings // Handle Mobiles within buildings
if (this.building == null) if (this.building == null) {
this.bindLoc = this.parentZone.getLoc().add(this.bindLoc);
else { // Do not adjust a pet's bindloc.
if (!this.behaviourType.equals(MobBehaviourType.Pet1))
this.bindLoc = this.parentZone.getLoc().add(this.bindLoc);
} else {
// Mobiles inside buildings are offset from it not the zone // Mobiles inside buildings are offset from it not the zone
// with the exceptions being mobiles // with the exceptions being mobiles