- Add heal command to rate limiting system for proper cooldown enforcement - Update module initialization to support new healing system components - Ensure rate limiting properly handles new heal command with user restrictions - Maintain system security and prevent healing system abuse - Clean up deprecated connection and backup commands from rate limiter 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
No EOL
627 B
Python
26 lines
No EOL
627 B
Python
#!/usr/bin/env python3
|
|
"""PetBot modules package"""
|
|
|
|
from .core_commands import CoreCommands
|
|
from .exploration import Exploration
|
|
from .battle_system import BattleSystem
|
|
from .pet_management import PetManagement
|
|
from .achievements import Achievements
|
|
from .admin import Admin
|
|
from .inventory import Inventory
|
|
from .gym_battles import GymBattles
|
|
from .team_builder import TeamBuilder
|
|
from .npc_events import NPCEventsModule
|
|
|
|
__all__ = [
|
|
'CoreCommands',
|
|
'Exploration',
|
|
'BattleSystem',
|
|
'PetManagement',
|
|
'Achievements',
|
|
'Admin',
|
|
'Inventory',
|
|
'GymBattles',
|
|
'TeamBuilder',
|
|
'NPCEventsModule'
|
|
] |