-
-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Giveaway Description Message #433
Comments
For the win message problem: You could just save the real prize into extraData and write
Also splitting the desc into parts was probably done for more overview. / A new user will not get thrown a long string option into the face. For general desc editing, working with that is of cource my opinion. If a majority of the userbase agress on a new naming convention for prize/messages then that is a different matter naturally |
Yes, I recognize that it shows up as the I don't want the prize in the I didn't realize I could use extraData in that way, and it would be less redundant than copying the generator methods, but it unfortunately has the downside that if I want to allow the messages to be configurable by the admins using my bot, they'd have to be aware that it's stored there as well, or I'd have to build some additional code to swap out |
So the |
Is your feature request related to a problem? Please describe.
Right now there isn't a good option on the messages option object to specify a description on the giveaway without over-riding the 'prize' field. And over-riding prize gives you confusing messaging if you then try to output the prize as a part of the win message.
As an example if I wanted my giveaway embed to be formatted like:
It would mean setting prize to that message and the win message would look something like:
Which is confusing.
Describe the solution you'd like
A 'description' message option that can be specified like:
The GenericDiscordServer Team is giving away {prize} as a part of our ongoing anniversary event!
and would replace where
prize
would normally go by itself in the main embed.Describe alternatives you've considered
I thought about over-riding the 'inviteToParticipate' message with additional content, but since that would still have the title of the embed with just the prize, that would look pretty strange too. I'm also considering overwriting the
generateEmbed
functions with something custom myself to provide myself with the solution I described above, but obviously it'd be nice if it was included in this package.The text was updated successfully, but these errors were encountered: