diff --git a/vote/VoteParser.js b/vote/VoteParser.js
index 9175cef322c5afbac4992e19ccd7a09c003e76e1..d24945819f8ea0f1e832609579989633a5f74a78 100644
--- a/vote/VoteParser.js
+++ b/vote/VoteParser.js
@@ -32,7 +32,7 @@ class VoteParser{
         if(this.categories.has(message.channelId)){
             const category = this.categories.get(message.channelId);
             const reactions = message.reactions.resolve(this.upVote);
-            if(reactions && reactions.count >= score){
+            if(reactions && reactions.count >= this.score){
                 this.add(message, category);
             }
         }