Skip to content

Commit 5aa8377

Browse files
authored
fix: allow up to 1000 for timed percent to see if that work in ORP mode (#96)
1 parent 8be88c1 commit 5aa8377

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyomnilogic_local/cli/debug/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def set_chlor_params(ctx: click.Context, bow_id: int, equip_id: int, timed_perce
243243
omni: OmniLogicAPI = ctx.obj["OMNI"]
244244

245245
# Validate timed_percent
246-
if not 0 <= timed_percent <= 100:
246+
if not 0 <= timed_percent <= 1000: # Temporarily allow up to 1000 to test ORP behavior
247247
click.echo(f"Error: timed_percent must be between 0-100, got {timed_percent}", err=True)
248248
raise click.Abort
249249

0 commit comments

Comments
 (0)