@@ -21,7 +21,7 @@ const removeRoleIcon = async (ctx: Discord.ChatInputCommandInteraction) => {
2121 }
2222 await role . setIcon ( "" ) ;
2323 await role . setUnicodeEmoji ( "" ) ;
24- await ctx . followUp ( EphemeralResponse ( "Your icon is now gone. " ) ) ;
24+ await ctx . followUp ( EphemeralResponse ( "👍 " ) ) ;
2525} ;
2626
2727const setRoleColorSpecial = async (
@@ -146,7 +146,7 @@ const uploadIcon = async (ctx: Discord.ChatInputCommandInteraction, role: Discor
146146 ) ;
147147 return ;
148148 }
149- await ctx . followUp ( EphemeralResponse ( "set custom icon successfully " ) ) ;
149+ await ctx . followUp ( EphemeralResponse ( "👍 " ) ) ;
150150 return ;
151151 }
152152
@@ -166,7 +166,7 @@ const setEmoji = async (
166166 if ( unicode ) {
167167 const emoji = unicode [ 0 ] ;
168168 await role . setUnicodeEmoji ( emoji ) ;
169- await ctx . followUp ( EphemeralResponse ( `Set your role emoji to ${ emoji } ` ) ) ;
169+ await ctx . followUp ( EphemeralResponse ( "👍" ) ) ;
170170 return ;
171171 }
172172 if ( custom ) {
@@ -187,7 +187,7 @@ const setEmoji = async (
187187 }
188188 }
189189 await role . setIcon ( emoji ) ;
190- await ctx . followUp ( EphemeralResponse ( `Set your role emoji successfully!` ) ) ;
190+ await ctx . followUp ( EphemeralResponse ( "👍" ) ) ;
191191 return ;
192192 }
193193 await ctx . followUp ( EphemeralResponse ( "that doesn't seem to be a vaild emoji 🤔" ) ) ;
@@ -203,7 +203,7 @@ const removeRole = async (ctx: Discord.ChatInputCommandInteraction): Promise<any
203203 }
204204 }
205205 role
206- ? await ctx . followUp ( EphemeralResponse ( "Removed your custom role " ) )
206+ ? await ctx . followUp ( EphemeralResponse ( "👍 " ) )
207207 : await ctx . followUp ( EphemeralResponse ( "You don't have a custom role..." ) ) ;
208208} ;
209209
@@ -259,7 +259,7 @@ const setRole = async (ctx: Discord.ChatInputCommandInteraction): Promise<any> =
259259 }
260260
261261 await member . roles . add ( targetRole ) ;
262- await ctx . followUp ( EphemeralResponse ( "Role added " ) ) ;
262+ await ctx . followUp ( EphemeralResponse ( "👍 " ) ) ;
263263} ;
264264
265265export const SlashRoleCommand : SlashCommand = {
0 commit comments