|
|
|
|
|
|
273
|
f"linked to <@{username.discord_member_id}>. Cannot be linked to " \
|
273
|
f"linked to <@{username.discord_member_id}>. Cannot be linked to " \
|
|
274
|
"another member.\n" \
|
274
|
"another member.\n" \
|
|
275
|
f"- `/{KickstarterCog.kickstarter.name} {KickstarterCog.reset.name} " \
|
275
|
f"- `/{KickstarterCog.kickstarter.name} {KickstarterCog.reset.name} " \
|
|
276
|
- f"{username}` will unlink that Discord record" \
|
|
|
|
|
|
276
|
+ f"{username}` will unlink that Discord record\n" \
|
|
277
|
"- If all else fails, you can just manually give them the backer role."
|
277
|
"- If all else fails, you can just manually give them the backer role."
|
|
278
|
await interaction.followup.send(text, ephemeral=True)
|
278
|
await interaction.followup.send(text, ephemeral=True)
|
|
279
|
return
|
279
|
return
|
|
|
|
|
|
|
281
|
text = f"{CONFIG['failure_emoji']} That survey username was already " \
|
281
|
text = f"{CONFIG['failure_emoji']} That survey username was already " \
|
|
282
|
f"assigned to <@{username.discord_member_id}> by a mod using this " \
|
282
|
f"assigned to <@{username.discord_member_id}> by a mod using this " \
|
|
283
|
"command.\n" \
|
283
|
"command.\n" \
|
|
284
|
- "-# If all else fails, you can just manually give them the backer role."
|
|
|
|
|
|
284
|
+ f"- `/{KickstarterCog.kickstarter.name} {KickstarterCog.reset.name} " \
|
|
|
|
285
|
+ f"{username}` will unlink that Discord record\n" \
|
|
|
|
286
|
+ "- If all else fails, you can just manually give them the backer role."
|
|
285
|
await interaction.followup.send(text, ephemeral=True)
|
287
|
await interaction.followup.send(text, ephemeral=True)
|
|
286
|
return
|
288
|
return
|
|
287
|
|
289
|
|