From b0e23c9f567ddd489380a779447cc9752540cfbb Mon Sep 17 00:00:00 2001 From: Robin Ward <robin.ward@gmail.com> Date: Thu, 17 Mar 2016 13:03:29 -0400 Subject: [PATCH] FIX: Thank you badge had incorrect criteria --- config/locales/client.en.yml | 2 +- db/fixtures/006_badges.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/locales/client.en.yml b/config/locales/client.en.yml index 78e4affd58c..9d659236727 100644 --- a/config/locales/client.en.yml +++ b/config/locales/client.en.yml @@ -2984,7 +2984,7 @@ en: description: Used the maximum amount of likes in a day 20 times thank_you: name: Thank You - description: Has at least 6 liked posts and a high like ratio + description: Has at least 20 liked posts gives_back: name: Gives Back description: Has at least 100 liked posts and a very high like ratio diff --git a/db/fixtures/006_badges.rb b/db/fixtures/006_badges.rb index 75e1f99b829..c8c30236e41 100644 --- a/db/fixtures/006_badges.rb +++ b/db/fixtures/006_badges.rb @@ -314,7 +314,7 @@ end [ - [Badge::ThankYou, "Thank You", BadgeType::Bronze, 6, 0.50], + [Badge::ThankYou, "Thank You", BadgeType::Bronze, 20, 0.00], [Badge::GivesBack, "Gives Back", BadgeType::Silver, 100, 1.0], [Badge::Empathetic, "Empathetic", BadgeType::Gold, 500, 2.0], ].each do |spec|