소스 검색

Try a tighter throttle.

pull/10/merge
Ben Kurtovic 9 년 전
부모
커밋
8df1e164ef
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      commands/welcome.py

+ 2
- 2
commands/welcome.py 파일 보기

@@ -65,7 +65,7 @@ class Welcome(Command):
return

this_join = time()
if this_join - self._last_join < 5:
if this_join - self._last_join < 3:
self._throttle = True
else:
self._throttle = False
@@ -84,7 +84,7 @@ class Welcome(Command):
def _callback(self, data):
"""Internal callback function."""
self._pending.append((data.chan, data.nick))
sleep(2)
sleep(1.5)

if data.chan in self.disabled or self._throttle:
return


불러오는 중...
취소
저장