開啟蜂巢BH功能時,1個蜂巢使用2個帳掃描
#用notepad++ 修改C:\PokemonGo-Map\pogom\
search.py # Create specified number of search_worker_thread.
log.info('Starting search worker threads')
for i in range(0, args.workers ):
for i in range(0, args.workers * 2): 這邊多 *2
if args.beehive and i > 0 and i % 2 == 0:
search_items_queue = Queue()
# Create the appropriate type of scheduler to handle the search queue.
if args.beehive and i > 0 and i % 2 == 0: 這邊多 and i % 2 == 0