Update slowmode intervals.

This commit is contained in:
John Preston 2019-07-30 17:55:49 +02:00
parent e8a28a57df
commit 787b5f549a
1 changed files with 5 additions and 5 deletions

View File

@ -34,11 +34,11 @@ int SlowmodeDelayByIndex(int index) {
switch (index) {
case 0: return 0;
case 1: return 30;
case 2: return 60;
case 3: return 5 * 60;
case 4: return 15 * 60;
case 5: return 30 * 60;
case 1: return 10;
case 2: return 30;
case 3: return 60;
case 4: return 5 * 60;
case 5: return 15 * 60;
case 6: return 60 * 60;
}
Unexpected("Index in SlowmodeDelayByIndex.");