diff --git a/VERSION b/VERSION index 4ee8b99..358c8e6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.24.8 +2.24.9 diff --git a/views/transaction_embed.py b/views/transaction_embed.py index 0611b00..0d78703 100644 --- a/views/transaction_embed.py +++ b/views/transaction_embed.py @@ -291,11 +291,10 @@ class SubmitConfirmationModal(discord.ui.Modal): ) player_updates.append(updated_player) - # Post to #transaction-log channel (only when league is NOT frozen) - # During freeze period, IL moves are hidden until Saturday processing - if not current_state.freeze: - bot = interaction.client - await post_transaction_to_log(bot, created_transactions, team=self.builder.team) + # Post to #transaction-log channel + # IL moves always post immediately - they're intra-team and don't need freeze hiding + bot = interaction.client + await post_transaction_to_log(bot, created_transactions, team=self.builder.team) # Create success message success_msg = f"āœ… **IL Move Executed Successfully!**\n\n" @@ -309,9 +308,6 @@ class SubmitConfirmationModal(discord.ui.Modal): success_msg += f"\nāœ… **All players have been moved to their new teams immediately**" - if current_state.freeze: - success_msg += f"\nšŸ”’ Move logged but hidden during freeze period - will be revealed Saturday" - await interaction.followup.send(success_msg, ephemeral=True) # Clear the builder after successful submission