Skip to content

Commit

Permalink
Update to be bool
Browse files Browse the repository at this point in the history
  • Loading branch information
theCapypara committed Jul 29, 2023
1 parent e25a866 commit 9321afd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion skytemple_files/data/waza_p/_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class WazaMove(WazaMoveProtocol[WazaMoveRangeSettings], AutoString):
affected_by_magic_coat: bool
is_snatchable: bool
uses_mouth: bool
ai_frozen_check: u8
ai_frozen_check: bool
ignores_taunted: bool
range_check_text: u8
move_id: u16
Expand Down
2 changes: 1 addition & 1 deletion skytemple_files/data/waza_p/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ class WazaMoveProtocol(Protocol[R]):
affected_by_magic_coat: bool
is_snatchable: bool
uses_mouth: bool
ai_frozen_check: u8
ai_frozen_check: bool
ignores_taunted: bool
range_check_text: u8
move_id: u16
Expand Down
2 changes: 1 addition & 1 deletion test/skytemple_files_test/data/waza_p/fixture.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class WazaMoveStub(WazaMoveProtocol[int]): # type: ignore
affected_by_magic_coat: bool
is_snatchable: bool
uses_mouth: bool
ai_frozen_check: u8
ai_frozen_check: bool
ignores_taunted: bool
range_check_text: u8
move_id: u16
Expand Down

0 comments on commit 9321afd

Please sign in to comment.