11from __future__ import annotations
2-
32from dataclasses import dataclass
43
54__VERSION__ = "1.6.0"
65
7-
86@dataclass
97class Channels :
10- suggestion : int = 985554479405490216
11- bug_report : int = 985554459948122142
8+ suggestion : int = 982353129913851924
9+ bug_report : int = 982669110926250004
1210 errors : int = 986531210283069450
1311 reddit_faq : int = 985908874362093620
14- tickets : int = 1003006753564262452
15- logs : int = 988162723890217040
16- staff_vote : int = 1002132747441152071 # We will change the channel ID later to "1005741491861344286".
12+ tickets : int = 1005904969737711760
13+ logs : int = 977581277010100315
14+ staff_vote : int = 1005741491861344286
15+
16+ @classmethod
17+ def dev (cls ):
18+ cls .suggestion : int = 985554479405490216
19+ cls .bug_report : int = 985554459948122142
20+ cls .reddit_faq : int = 985908874362093620
21+ cls .tickets : int = 1003006753564262452
22+ cls .logs : int = 988162723890217040
23+ cls .staff_vote : int = 1002132747441152071
24+ return cls
25+
1726
27+ @dataclass
28+ class Roles :
29+ staff : int = 985943266115584010
30+
31+ @classmethod
32+ def dev (cls ):
33+ cls .staff : int = 1005904440039047208
34+ return cls
1835
1936@dataclass
2037class Colors :
@@ -33,7 +50,7 @@ def status(stat):
3350 return statuses [stat ]
3451
3552
36- STAFF_ROLE = 985943266115584010
53+ IGNORE_EXCEPTIONS = [ "UserBlacklisted" ]
3754morse = {
3855 "0" : "-----" ,
3956 "1" : ".----" ,
@@ -92,7 +109,7 @@ def status(stat):
92109}
93110tag_help = {
94111 "public" : {
95- "tag get" : "Gives you the tags value" ,
112+ "tag get (or /t) " : "Gives you the tags value" ,
96113 "tag create" : "Creates a tag" ,
97114 "tag help" : "Gives you this help" ,
98115 "tag info" : "Gives you the tags info (views, owner, etc)" ,
@@ -426,4 +443,3 @@ def status(stat):
426443 "yeethon" ,
427444 "zig" ,
428445]
429- IGNORE_EXCEPTIONS = ["UserBlacklisted" ]
0 commit comments