update reminder message

This commit is contained in:
Lee 2024-07-03 00:29:50 +01:00
parent ac499898e3
commit cb35182c6a
2 changed files with 1 additions and 2 deletions

@ -68,7 +68,7 @@ public class ReminderFeature extends Feature {
toRemove.add(reminder);
TextChannel channel = reminder.getChannel();
if (channel != null) {
channel.sendMessage("Hey %s! ⏰ It's time for your reminder: %s".formatted(
channel.sendMessage("Hey %s! ⏰ It's time for your reminder: `%s`".formatted(
user.getAsMention(),
reminder.getReminder()
)).queue();

@ -29,7 +29,6 @@ import java.util.Map;
@Getter
@Setter
public class BatUser extends ProfileHolder {
private static final Logger log = LoggerFactory.getLogger(BatUser.class);
/**
* The document that belongs to this user
*/