From 274f6c9207d490146c680f25d24bffdd38885796 Mon Sep 17 00:00:00 2001 From: themrrobert <10122432+themrrobert@users.noreply.github.com> Date: Mon, 14 Oct 2024 10:21:39 -0700 Subject: [PATCH] Allow irons to donate ICs (#6113) --- src/lib/util/globalInteractions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/util/globalInteractions.ts b/src/lib/util/globalInteractions.ts index 486b40d440..fa7d6f3c2e 100644 --- a/src/lib/util/globalInteractions.ts +++ b/src/lib/util/globalInteractions.ts @@ -256,7 +256,7 @@ async function repeatTripHandler(interaction: ButtonInteraction) { } function icDonateValidation(user: MUser, donator: MUser) { - if (user.isIronman || donator.isIronman) { + if (user.isIronman) { return 'Ironmen stand alone!'; } if (user.id === donator.id) {