diff --git a/Lieb/Models/GuildWars2/Raid/RaidTemplate.cs b/Lieb/Models/GuildWars2/Raid/RaidTemplate.cs index cd5862a..a2b3f45 100644 --- a/Lieb/Models/GuildWars2/Raid/RaidTemplate.cs +++ b/Lieb/Models/GuildWars2/Raid/RaidTemplate.cs @@ -30,6 +30,10 @@ namespace Lieb.Models.GuildWars2.Raid TimeZone = template.TimeZone; Interval = template.Interval; CreateDaysBefore = template.CreateDaysBefore; + foreach(RaidReminder reminder in Reminders) + { + reminder.Sent = true; + } } } }