@@ -49,25 +49,19 @@ public final class VcActivityCommand extends SlashCommandAdapter {
49
49
private static final long MAX_AGE_DAYS_LIMIT = 7 ;
50
50
private static final long MAX_USES_LIMIT = 100 ;
51
51
52
- public static final String YOUTUBE_TOGETHER_NAME = "YouTube Together" ;
53
52
public static final String POKER_NAME = "Poker" ;
54
53
public static final String BETRAYAL_IO_NAME = "Betrayal.io" ;
55
54
public static final String FISHINGTON_IO_NAME = "Fishington.io" ;
56
- public static final String CHESS_CG_2_DEV = "Chess / CG 2 Dev" ;
57
- public static final String AWKWORD_NAME = "Awkword" ;
58
55
public static final String SPELLCAST_NAME = "Spellcast" ;
59
56
public static final String DOODLECREW_NAME = "Doodlecrew" ;
60
57
public static final String WORDSNACK_NAME = "Wordsnack" ;
61
58
public static final String LETTERTILE_NAME = "Lettertile" ;
62
59
63
60
64
61
private static final List <Command .Choice > VC_APPLICATIONS =
65
- List .of (new Command .Choice (YOUTUBE_TOGETHER_NAME , YOUTUBE_TOGETHER_NAME ),
66
- new Command .Choice (POKER_NAME , POKER_NAME ),
62
+ List .of (new Command .Choice (POKER_NAME , POKER_NAME ),
67
63
new Command .Choice (BETRAYAL_IO_NAME , BETRAYAL_IO_NAME ),
68
64
new Command .Choice (FISHINGTON_IO_NAME , FISHINGTON_IO_NAME ),
69
- new Command .Choice (CHESS_CG_2_DEV , CHESS_CG_2_DEV ),
70
- new Command .Choice (AWKWORD_NAME , AWKWORD_NAME ),
71
65
new Command .Choice (SPELLCAST_NAME , SPELLCAST_NAME ),
72
66
new Command .Choice (DOODLECREW_NAME , DOODLECREW_NAME ),
73
67
new Command .Choice (WORDSNACK_NAME , WORDSNACK_NAME ),
@@ -78,12 +72,11 @@ public final class VcActivityCommand extends SlashCommandAdapter {
78
72
* invite targets" PR on JDA</a>. There is no official list from Discord themselves, so this is
79
73
* our best bet.
80
74
*/
81
- private static final Map <String , String > VC_APPLICATION_TO_ID = Map .of (YOUTUBE_TOGETHER_NAME ,
82
- "755600276941176913" , POKER_NAME , "755827207812677713" , BETRAYAL_IO_NAME ,
83
- "773336526917861400" , FISHINGTON_IO_NAME , "814288819477020702" , CHESS_CG_2_DEV ,
84
- "832012586023256104" , AWKWORD_NAME , "879863881349087252" , SPELLCAST_NAME ,
85
- "852509694341283871" , DOODLECREW_NAME , "878067389634314250" , WORDSNACK_NAME ,
86
- "879863976006127627" , LETTERTILE_NAME , "879863686565621790" );
75
+ private static final Map <String , String > VC_APPLICATION_TO_ID =
76
+ Map .of (POKER_NAME , "755827207812677713" , BETRAYAL_IO_NAME , "773336526917861400" ,
77
+ FISHINGTON_IO_NAME , "814288819477020702" , SPELLCAST_NAME , "852509694341283871" ,
78
+ DOODLECREW_NAME , "878067389634314250" , WORDSNACK_NAME , "879863976006127627" ,
79
+ LETTERTILE_NAME , "879863686565621790" );
87
80
88
81
private static final List <OptionData > inviteOptions = List .of (new OptionData (OptionType .INTEGER ,
89
82
MAX_USES_OPTION ,
@@ -217,7 +210,7 @@ private static void handleErrors(@NotNull SlashCommandEvent event,
217
210
218
211
/**
219
212
* Interprets the given option as integer. Throws if the option is not an integer.
220
- *
213
+ *
221
214
* @param option the option that contains the integer to extract, or null if not present
222
215
* @return the extracted integer if present, null otherwise
223
216
**/
0 commit comments