Debounce events for 10 seconds.

This commit is contained in:
sk89q 2014-08-22 16:10:22 -07:00
parent bd8e1a35f6
commit b43bc4a57a

View File

@ -21,7 +21,7 @@
class EventDebounce {
private static final int DEBOUNCE_TIME = 5000;
private static final int DEBOUNCE_TIME = 10000;
private final long time = System.currentTimeMillis();
private final boolean cancelled;