Skip to content
This repository was archived by the owner on Mar 8, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ballsdex/packages/battle/cog.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

from ballsdex.core.utils.transformers import (
BallInstanceTransform,
BallTransform
BallEnabledTransform
)

from ballsdex.packages.battle.xe_battle_lib import (
Expand Down Expand Up @@ -518,7 +518,7 @@ async def remove(

@bulk.command(name="add")
async def bulk_add(
self, interaction: discord.Interaction, countryball: BallTransform
self, interaction: discord.Interaction, countryball: BallEnabledTransform
):
"""
Adds countryballs to a battle in bulk.
Expand Down Expand Up @@ -581,7 +581,7 @@ async def bulk_remove(

@bulk.command(name="remove")
async def bulk_remove(
self, interaction: discord.Interaction, countryball: BallTransform
self, interaction: discord.Interaction, countryball: BallEnabledTransform
):
"""
Removes countryballs from a battle in bulk.
Expand Down
Loading