From 8ab5e025b27e6e096a4314d433497b2de02c41bd Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Tue, 16 Dec 2025 22:19:53 -0600 Subject: [PATCH] Allow IL moves to post to transaction log during freeze period MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit IL moves (/ilmove) are intra-team transactions that should always be visible immediately. Only scheduled transactions (/dropadd) need to remain hidden during the freeze period. šŸ¤– Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- VERSION | 2 +- views/transaction_embed.py | 12 ++++-------- 2 files changed, 5 insertions(+), 9 deletions(-) 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