diff --git a/localization.config b/localization.config index 8718a94..8474259 100644 --- a/localization.config +++ b/localization.config @@ -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= [CommandBeansShow] -You have %s beans!=This phrase has been localized. Also, you have %s. +You have %s beans!= Displays how many beans you have= [CommandHelp] @@ -18,7 +18,7 @@ Displays the actively running KittyBot application information= [CommandTweet] 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] Please enter `general`, `mod`, or `admin`!= diff --git a/src/commands/CommandTweet.java b/src/commands/CommandTweet.java index 7538bec..8a0bb40 100644 --- a/src/commands/CommandTweet.java +++ b/src/commands/CommandTweet.java @@ -19,7 +19,7 @@ public class CommandTweet extends Command try { res.Call(tweet.tweet(input.args)); } catch (Exception e) { - res.Call(Localizer.Stub("FUCKED UP HARD")); + res.Call(Localizer.Stub("Tweet command failed!")); } } }