mirror of
https://github.com/W1NDes/M-AzurLaneAutoScript.git
synced 2026-05-14 07:08:04 +08:00
Fix: [JP] Location of HP bar and ship level
This commit is contained in:
parent
e85be55bc1
commit
5426dfc295
@ -70,6 +70,11 @@ class HPBalancer(ModuleBase):
|
||||
# Location of six HP bar.
|
||||
return ButtonGrid(origin=(35, 190), delta=(0, 100), button_shape=(66, 4), grid_shape=(1, 6))
|
||||
|
||||
@Config.when(SERVER='jp')
|
||||
def _hp_grid(self):
|
||||
# Location of six HP bar.
|
||||
return ButtonGrid(origin=(35, 205), delta=(0, 100), button_shape=(66, 4), grid_shape=(1, 6))
|
||||
|
||||
@Config.when(SERVER=None)
|
||||
def _hp_grid(self):
|
||||
# Location of six HP bar.
|
||||
|
||||
@ -39,6 +39,10 @@ class Level(ModuleBase):
|
||||
def _lv_grid(self):
|
||||
return ButtonGrid(origin=(58, 113), delta=(0, 100), button_shape=(46, 19), grid_shape=(1, 6))
|
||||
|
||||
@Config.when(SERVER='jp')
|
||||
def _lv_grid(self):
|
||||
return ButtonGrid(origin=(58, 128), delta=(0, 100), button_shape=(46, 19), grid_shape=(1, 6))
|
||||
|
||||
@Config.when(SERVER=None)
|
||||
def _lv_grid(self):
|
||||
return ButtonGrid(origin=(58, 129), delta=(0, 100), button_shape=(46, 19), grid_shape=(1, 6))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user