Skip to content

Commit

Permalink
Allow irons to donate ICs (oldschoolgg#6113)
Browse files Browse the repository at this point in the history
  • Loading branch information
themrrobert authored Oct 14, 2024
1 parent 8e51f7b commit 274f6c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/util/globalInteractions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 274f6c9

Please sign in to comment.