mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 18:28:27 -04:00
Nuked humanizer. Some of the strings might look worse but the output directory will no longer look terrible. Added stats for todo list command
This commit is contained in:
@@ -9,7 +9,13 @@ public static class PatronExtensions
|
||||
};
|
||||
|
||||
public static string ToFullName(this QuotaPer per)
|
||||
=> per.Humanize(LetterCasing.LowerCase);
|
||||
=> per switch
|
||||
{
|
||||
QuotaPer.PerDay => "per day",
|
||||
QuotaPer.PerHour => "per hour",
|
||||
QuotaPer.PerMonth => "per month",
|
||||
_ => "Unknown",
|
||||
};
|
||||
|
||||
public static DateTime DayOfNextMonth(this DateTime date, int day)
|
||||
{
|
||||
|
Reference in New Issue
Block a user