|
@@ -841,10 +841,7 @@ class task_information(dongri_task):
|
|
|
hero_arr = [information_img.hero0, information_img.hero1, information_img.hero2]
|
|
|
camp_arr = [information_img.camp1, information_img.camp2]
|
|
|
wolf_arr = [information_img.wolf0, information_img.wolf1, information_img.wolf2]
|
|
|
- total_arr = []
|
|
|
- total_arr.append(hero_arr)
|
|
|
- total_arr.append(camp_arr)
|
|
|
- total_arr.append(wolf_arr)
|
|
|
+ total_arr = hero_arr + camp_arr + wolf_arr
|
|
|
|
|
|
if waitFindImg_withBool(total_arr, 2, 1) == False:
|
|
|
return False
|