Added warn punishment action for protection commands

This commit is contained in:
Kwoth
2022-07-03 14:55:31 +02:00
parent 5d78f29329
commit 3fd5f0c97a
4 changed files with 8 additions and 2 deletions

View File

@@ -185,6 +185,9 @@ public class UserPunishService : INService, IReadyExecutor
guild.Id);
}
break;
case PunishmentAction.Warn:
await Warn(guild, user.Id, mod, 1, reason);
break;
}
}