From a446440e86f69132f5a7d87391f5448919f5e1e8 Mon Sep 17 00:00:00 2001 From: klemek Date: Mon, 11 Jan 2021 22:36:03 +0100 Subject: [PATCH] fixed invalid value --- src/data_types/emote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data_types/emote.py b/src/data_types/emote.py index 175e970..c57ae19 100644 --- a/src/data_types/emote.py +++ b/src/data_types/emote.py @@ -69,7 +69,7 @@ class Emote: else: output += f"{plural(self.usages, 'time')} " if self.reactions >= 1: - output += f"and {plural(self.usages, 'reaction')} " + output += f"and {plural(self.reactions, 'reaction')} " if show_life and not self.default: output += f"(in {plural(self.life_days(), 'day')}) " if self.used():