Skip to content

Commit

Permalink
What was the point for such long cooldown?
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcelektro committed Feb 24, 2022
1 parent fc4bba0 commit f66e035
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ private static boolean cancel(UUID player){

private static void update(UUID player){
if (delay.containsKey(player)){
delay.replace(player, System.currentTimeMillis() + 2500L);
delay.replace(player, System.currentTimeMillis() + 250L);
return;
}
delay.put(player, System.currentTimeMillis() + 2500L);
delay.put(player, System.currentTimeMillis() + 250L);
}
}

0 comments on commit f66e035

Please sign in to comment.