@@ -53,7 +53,7 @@ class CharacterApplication < ApplicationForm
def self.deny(event)
# Create App Rejection
reply = BotResponse.new(
- embed: reject_app(event, :character),
+ embed: reject_app(event.message.embeds.first, :character),
reactions: CharApp::REJECT_MESSAGES.map{ |k,v| k }
)
@@ -49,7 +49,7 @@ class ImageApplication < ApplicationForm
- embed: reject_app(event, :image),
+ embed: reject_app(event.message.embeds.first, :image),
reactions: ImgApp::REJECT_MESSAGES.map{ |k,v| k }
@@ -40,7 +40,7 @@ class ItemApplication < ApplicationForm
- embed: reject_app(event, :item),
+ embed: reject_app(event.message.embeds.first, :item),
reactions: ItemApp::REJECT_MESSAGES.map{ |k,v| k }
@@ -40,7 +40,7 @@ class LandmarkApplication < ApplicationForm
- embed: reject_app(event, :landmark),
+ embed: reject_app(event.message.embeds.first, :landmark),
reactions: LmApp::REJECT_MESSAGES.map{ |k,v| k }
@@ -54,7 +54,7 @@ class ReactivationApplication < ApplicationForm
- embed: reject_app(event, :reactivation),
+ embed: reject_app(event.message.embeds.first, :reactivation),