+ Added Stark, Stats, Tweet (stubbed only), Wolfram, Yeet

This commit is contained in:
Matthew Cech
2019-04-06 23:49:08 -07:00
parent 1bdbfbac17
commit aa415e8e76
6 changed files with 30 additions and 8 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
package commands;
import core.Command;
import core.Localizer;
import dataStructures.*;
import network.NetworkTwitter;
@@ -10,7 +11,7 @@ public class CommandTweet extends Command
public CommandTweet(KittyRole level, KittyRating rating) { super(level, rating); }
@Override
public String HelpText() { return "With an input of x,y,z where x y and z are all choices, kitty will choose one"; }
public String HelpText() { return Localizer.Stub("With an input of x,y,z where x y and z are all choices, kitty will choose one"); }
@Override
public void OnRun(KittyGuild guild, KittyChannel channel, KittyUser user, UserInput input, Response res)
@@ -18,7 +19,7 @@ public class CommandTweet extends Command
try {
res.Call(tweet.tweet(input.args));
} catch (Exception e) {
res.Call("FUCKED UP HARD");
res.Call(Localizer.Stub("FUCKED UP HARD"));
}
}
}