Merge pull request #23 from RubenD96/master

Complete rework of WhisperHandler including proper chase functionality
This commit is contained in:
Ponk
2021-08-19 11:57:49 +02:00
committed by GitHub
5 changed files with 279 additions and 303 deletions

View File

@@ -255,6 +255,7 @@ public class MapleCharacter extends AbstractMapleCharacterObject {
private long lastExpGainTime;
private boolean pendingNameChange; //only used to change name on logout, not to be relied upon elsewhere
private long loginTime;
private boolean chasing = false;
private MapleCharacter() {
super.setListener(new AbstractCharacterListener() {
@@ -11323,5 +11324,12 @@ public class MapleCharacter extends AbstractMapleCharacterObject {
public int getLanguage() {
return getClient().getLanguage();
}
public boolean isChasing() {
return chasing;
}
public void setChasing(boolean chasing) {
this.chasing = chasing;
}
}