From fb9ca0af718a1839c1ef372c68375a6fe3a53883 Mon Sep 17 00:00:00 2001 From: Tyler Renelle Date: Sat, 4 May 2013 11:04:30 +0100 Subject: [PATCH] was adding accidental extra % point --- src/app/scoring.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/scoring.coffee b/src/app/scoring.coffee index 0ea45a7fa5..83ff56bd8f 100644 --- a/src/app/scoring.coffee +++ b/src/app/scoring.coffee @@ -25,7 +25,7 @@ randomDrop = (model, delta, priority, streak=0) -> # % chance of getting a pet or meat chanceMultiplier = Math.abs(delta) chanceMultiplier *= algos.priorityValue(priority) # multiply chance by reddness - chanceMultiplier += (streak+ 1) # streak bonus + chanceMultiplier += streak # streak bonus console.log chanceMultiplier if user.get('flags.dropsEnabled') and Math.random() < (.05 * chanceMultiplier)