forked from ChomeNS/chipmunkmod
try
This commit is contained in:
parent
6ea08ab4dc
commit
9ebd9154d9
1 changed files with 11 additions and 7 deletions
|
@ -143,6 +143,7 @@ public class SelfCare extends Listener {
|
|||
public void packetReceived(PlayerPositionLookS2CPacket packet) {
|
||||
if (timer == null) return;
|
||||
|
||||
try {
|
||||
positionPacketsPerSecond++;
|
||||
|
||||
timer.schedule(new TimerTask() {
|
||||
|
@ -151,5 +152,8 @@ public class SelfCare extends Listener {
|
|||
positionPacketsPerSecond--;
|
||||
}
|
||||
}, 1000);
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue