diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-02 11:30:27 +0100 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-02 11:30:27 +0100 |
commit | 2177473a839c4599646b3852e2eb090243ee1f77 (patch) | |
tree | ae83baa273b245392243dfb6bd518da5e45c0a4f | |
parent | 34ad9cfe24460d5464fc1ca311026a70c9684fc5 (diff) | |
download | algeria-2177473a839c4599646b3852e2eb090243ee1f77.tar.gz |
fuzzer: allow +0 AP
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -207,8 +207,8 @@ function lower_gov_psl(amount) { } function raise_fln_ap(amount, reason) { - if (amount <= 0) - throw Error(`ASSERT: amount > 0, but was ${amount}`) + if (amount < 0) + throw Error(`ASSERT: amount >= 0, but was ${amount}`) if (reason) logp(`FLN AP +${amount} (${reason})`) else |