fix welcomer placeholders and fix channel command
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 39s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 39s
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
package cc.fascinated.bat.features.welcomer;
|
||||
|
||||
import cc.fascinated.bat.common.Serializable;
|
||||
import cc.fascinated.bat.model.BatGuild;
|
||||
import cc.fascinated.bat.model.BatUser;
|
||||
import cc.fascinated.bat.service.DiscordService;
|
||||
import com.google.gson.Gson;
|
||||
@ -72,9 +73,10 @@ public class WelcomerProfile extends Serializable {
|
||||
/**
|
||||
* Sends the welcome message to the user
|
||||
*
|
||||
* @param guild The guild to send the message in
|
||||
* @param user The user to send the message to
|
||||
*/
|
||||
public void sendWelcomeMessage(BatUser user) {
|
||||
public void sendWelcomeMessage(BatGuild guild, BatUser user) {
|
||||
if (this.channel == null || (!this.isMessage() && !this.isEmbed())) {
|
||||
return;
|
||||
}
|
||||
@ -82,11 +84,11 @@ public class WelcomerProfile extends Serializable {
|
||||
if (welcomerEmbed.isPingBeforeSend()) { // Ping the user before sending the message
|
||||
this.channel.sendMessage(user.getDiscordUser().getAsMention()).queue();
|
||||
}
|
||||
this.channel.sendMessageEmbeds(welcomerEmbed.buildEmbed(user).build()).queue();
|
||||
this.channel.sendMessageEmbeds(welcomerEmbed.buildEmbed(guild, user).build()).queue();
|
||||
return;
|
||||
}
|
||||
if (welcomerMessage != null) {
|
||||
this.channel.sendMessage(welcomerMessage.buildMessage(user)).queue();
|
||||
this.channel.sendMessage(welcomerMessage.buildMessage(guild, user)).queue();
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user