|
@@ -3,7 +3,7 @@ FTR = "If you have any questions, feel free to ask a Guildmaster"
|
|
|
|
|
|
|
|
def reject_app(app, opts)
|
|
def reject_app(app, opts)
|
|
|
embed = Embed.new(
|
|
embed = Embed.new(
|
|
|
- title: app.fields[1].value || 'Unknown Character',
|
|
|
|
|
|
|
+ title: app.title,
|
|
|
description: app.description,
|
|
description: app.description,
|
|
|
color: ERROR,
|
|
color: ERROR,
|
|
|
author: {
|
|
author: {
|
|
@@ -15,6 +15,7 @@ def reject_app(app, opts)
|
|
|
|
|
|
|
|
fields = case opts
|
|
fields = case opts
|
|
|
when :character
|
|
when :character
|
|
|
|
|
+ embed.title = app.fields[1].value
|
|
|
reject_fields(CharApp::REJECT_MESSAGES)
|
|
reject_fields(CharApp::REJECT_MESSAGES)
|
|
|
when :image
|
|
when :image
|
|
|
reject_fields(ImgApp::REJECT_MESSAGES)
|
|
reject_fields(ImgApp::REJECT_MESSAGES)
|