From eb3bc7102b54e3f7912ec4484be6bf94529829ab Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 5 Aug 2022 21:56:51 -0400 Subject: [PATCH] [commands] Ensure Command.extras are copied Fix #8309 --- discord/ext/commands/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 5e1232769..ff30e859f 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -554,6 +554,7 @@ class Command(_BaseCommand, Generic[CogT, P, T]): def _ensure_assignment_on_copy(self, other: Self) -> Self: other._before_invoke = self._before_invoke other._after_invoke = self._after_invoke + other.extras = self.extras if self.checks != other.checks: other.checks = self.checks.copy() if self._buckets.valid and not other._buckets.valid: