Skip to content

Commit

Permalink
Automate roles help
Browse files Browse the repository at this point in the history
  • Loading branch information
egelmex committed Apr 12, 2012
1 parent 3e57df1 commit ae52cdf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/no/arcticdrakefox/wolfbot/management/BotConstants.java
@@ -1,5 +1,7 @@
package no.arcticdrakefox.wolfbot.management;

import com.google.common.base.Joiner;

import no.arcticdrakefox.wolfbot.model.Role;
import no.arcticdrakefox.wolfbot.roles.SkipPlayer;

Expand Down Expand Up @@ -33,7 +35,7 @@ public static String help(String command) {
case "end":
return "!end: Ends game in progress.";
case "set":
return "!set <role> <count>: sets specified role to specified amount. Valid roles are wolf, devil, mason, scry, vigilante, baner, ghost";
return "!set <role> <count>: sets specified role to specified amount. Valid roles are " + Joiner.on(", ").join(Role.values())+ ".";
case "list":
return "!list: Shows all living players in game.";
case "roles":
Expand Down

1 comment on commit ae52cdf

@tpcarlson
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shweet

Please sign in to comment.