Browse Source

Properly check for maximum number of children

pull/9733/head
Rapptz 1 year ago
parent
commit
76666fbcf4
  1. 2
      discord/ui/view.py

2
discord/ui/view.py

@ -320,7 +320,7 @@ class View:
or the row the item is trying to be added to is full.
"""
if len(self._children) > 25:
if len(self._children) >= 25:
raise ValueError('maximum number of children exceeded')
if not isinstance(item, Item):

Loading…
Cancel
Save