From 89b99c74cee2179695b10b6873fe5de5474a2909 Mon Sep 17 00:00:00 2001 From: tobspr Date: Fri, 12 Mar 2021 13:28:42 +0100 Subject: [PATCH] Fix achievements bug --- src/js/platform/achievement_provider.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/platform/achievement_provider.js b/src/js/platform/achievement_provider.js index 31973880..94a6a29c 100644 --- a/src/js/platform/achievement_provider.js +++ b/src/js/platform/achievement_provider.js @@ -249,8 +249,8 @@ export class AchievementCollection { this.add(ACHIEVEMENTS.throughputBp50, this.createRateOptions(SHAPE_BP, 50)); this.add(ACHIEVEMENTS.throughputLogo25, this.createRateOptions(SHAPE_LOGO, 25)); this.add(ACHIEVEMENTS.throughputLogo50, this.createRateOptions(SHAPE_LOGO, 50)); - this.add(ACHIEVEMENTS.throughputRocket10, this.createRateOptions(SHAPE_ROCKET, 25)); - this.add(ACHIEVEMENTS.throughputRocket20, this.createRateOptions(SHAPE_ROCKET, 50)); + this.add(ACHIEVEMENTS.throughputRocket10, this.createRateOptions(SHAPE_ROCKET, 10)); + this.add(ACHIEVEMENTS.throughputRocket20, this.createRateOptions(SHAPE_ROCKET, 20)); this.add(ACHIEVEMENTS.trash1000, { init: this.initTrash1000, isValid: this.isTrash1000Valid,