1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 13:17:00 +08:00

Fix: Lots of problems

- Fix HOMO_EDGE_HOUGHLINES_THRESHOLD not used
- Fix get stuck if kill too fast in combat_executing
- Fix wrong swipe when camera out of map
- Fix walk_out_of_step not detected
- Opt relative_record now save temp images in sub folder
This commit is contained in:
LmeSzinc
2020-07-24 17:27:42 +08:00
parent 112babcb04
commit 3b811fca9c
7 changed files with 23 additions and 11 deletions

View File

@@ -85,7 +85,7 @@ class GridInfo:
return key
if self.is_siren:
return self.enemy_genre.split('_')[1][:2].upper() if self.enemy_genre else 'SU'
return self.enemy_genre.split('_')[1][:2].upper() if self.enemy_genre and '_' in self.enemy_genre else 'SU'
if self.is_enemy:
return '%s%s' % (self.enemy_scale, self.enemy_genre[0].upper()) \