Overhauled Mounts (still buggy)

This commit is contained in:
Treeku
2014-04-18 19:09:45 +01:00
parent db3f0368a0
commit f58b7b6a5b
18 changed files with 1058 additions and 173 deletions
@@ -142,6 +142,9 @@ public class PlayerObject extends IntangibleObject {
private byte godLevel = 0;
@NotPersistent
private boolean callingCompanion = false;
public PlayerObject() {
super();
messageBuilder = new PlayerMessageBuilder(this);
@@ -864,4 +867,12 @@ public class PlayerObject extends IntangibleObject {
}
}
public boolean isCallingCompanion() {
return callingCompanion;
}
public void setCallingCompanion(boolean callingCompanion) {
this.callingCompanion = callingCompanion;
}
}