+ Added roll, RPEnd, RPG, RPStart, Shutdown

This commit is contained in:
Matthew Cech
2019-04-06 23:45:41 -07:00
parent 52afd92db1
commit 1bdbfbac17
6 changed files with 109 additions and 75 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ public class CommandRoll extends Command
public CommandRoll(KittyRole level, KittyRating rating) { super(level, rating); }
@Override
public String HelpText() { return "Based on input of xdy where x is number of dice and y is faces kitty will roll that amount of dice, display the individual rolls and total"; }
public String HelpText() { return Localizer.Stub("Based on input of xdy where x is number of dice and y is faces kitty will roll that amount of dice, display the individual rolls and total"); }
@Override
public void OnRun(KittyGuild guild, KittyChannel channel, KittyUser user, UserInput input, Response res)
@@ -27,7 +27,7 @@ public class CommandRoll extends Command
}
catch(Exception e)
{
res.Call("Didn't work ;3;");
res.Call(Localizer.Stub("Didn't work ;3;"));
}
}