Reworking of Acrobatics, plus an Acrobatics bugfix.

This commit is contained in:
GJ
2012-06-11 16:11:23 -04:00
parent 5bff6d63f2
commit 6ab1996440
10 changed files with 333 additions and 147 deletions

View File

@ -50,7 +50,6 @@ public class PlayerProfile {
/* Timestamps */
private int xpGainATS = 0;
private int recentlyHurt = 0;
private int respawnATS;
/* mySQL STUFF */
private int lastlogin = 0;
@ -588,18 +587,6 @@ public class PlayerProfile {
partyChatMode = !partyChatMode;
}
/*
* Exploit Prevention
*/
public long getRespawnATS() {
return respawnATS;
}
public void setRespawnATS(long newvalue) {
respawnATS = (int) (newvalue / 1000);
}
/*
* Tools
*/