= Updated tweet error text

This commit is contained in:
Matthew Cech
2019-04-12 21:30:01 -07:00
parent 84009a294d
commit 2c5c5d3c4a
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
'start' will start a new poll with the query of the line you put after, 'choice' will add a choice to the poll, 'stop' will end the poll= 'start' will start a new poll with the query of the line you put after, 'choice' will add a choice to the poll, 'stop' will end the poll=
[CommandBeansShow] [CommandBeansShow]
You have %s beans!=This phrase has been localized. Also, you have %s. You have %s beans!=
Displays how many beans you have= Displays how many beans you have=
[CommandHelp] [CommandHelp]
@@ -18,7 +18,7 @@ Displays the actively running KittyBot application information=
[CommandTweet] [CommandTweet]
With an input of x,y,z where x y and z are all choices, kitty will choose one= With an input of x,y,z where x y and z are all choices, kitty will choose one=
FUCKED UP HARD= Tweet command failed!=
[CommandRole] [CommandRole]
Please enter `general`, `mod`, or `admin`!= Please enter `general`, `mod`, or `admin`!=
+1 -1
View File
@@ -19,7 +19,7 @@ public class CommandTweet extends Command
try { try {
res.Call(tweet.tweet(input.args)); res.Call(tweet.tweet(input.args));
} catch (Exception e) { } catch (Exception e) {
res.Call(Localizer.Stub("FUCKED UP HARD")); res.Call(Localizer.Stub("Tweet command failed!"));
} }
} }
} }