fix leave alarm (#1265)

This commit is contained in:
NotSoToothless
2026-05-21 23:22:10 -07:00
committed by GitHub
parent cd909bc858
commit 2d5adfcbe0
2 changed files with 13 additions and 5 deletions
+3 -3
View File
@@ -157,9 +157,9 @@ TIER_ENFORCEMENT_TS: int = 1778107232
Tier = Literal["standard", "pro", "max"]
TIER_NOTIF_CAPS: Dict[str, Dict[str, Optional[int]]] = {
"standard": {"Logs": 10, "Points": 10},
"pro": {"Logs": 25, "Points": 25},
"max": {"Logs": None, "Points": None},
"standard": {"Logs": 10, "Points": 10, "Leave": 10},
"pro": {"Logs": 25, "Points": 25, "Leave": 25},
"max": {"Logs": None, "Points": None, "Leave": None},
}
TIER_ALLOWS_WILDCARDS: Dict[str, bool] = {