diff options
-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 |