We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9d32e9 commit 4fccd73Copy full SHA for 4fccd73
scan.py
@@ -87,7 +87,7 @@ def recv_packets(udp_skt, pbar):
87
infos, addr = parse_raw_pkt(udp_skt.recvfrom(1024))
88
if not infos or not infos["motd"]: # 过滤掉没有motd的和没有信息的
89
continue
90
- if int(infos['online']) <= display_online:
+ if int(infos['online']) < display_online:
91
92
93
server_count += 1
0 commit comments