Skip to content

Commit

Permalink
Merge pull request #312 from Cobbleopolis/command-names
Browse files Browse the repository at this point in the history
`count` command has been renamed to `subcount` and `uptime` has been …
  • Loading branch information
Cobbleopolis committed Oct 11, 2018
2 parents f4219fc + 8ce6dfd commit fead6ec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions conf/messages/bot.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ help {
bitgame = "Shows the information about the current bit game being played."
bits = "Shows the information for the current state of bit tracking."
bittest = "Allows for the mods to be able to test bit tracking. The default amount is 100 bits."
count = "Shows the current amount of subscribers (excluding the streamer)."
subcount = "Shows the current amount of subscribers (excluding the streamer)."
help = "Provides a link to this page."
ping = "A simple command to ping the bot to make sure it is alive."
sos = "Quickly notifies the moderators on the server."
uptime = "Shows how long a channel has been live."
streamuptime = "Shows how long a channel has been live."
version = "This will display the version of the bot in the channel that called it."
}
message = "Here is a link to the list of commands: {0}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import scala.concurrent.{ExecutionContext, Future}

trait SubCountCommand extends Command with DefaultLang {

override val name: String = "count"
override val name: String = "subcount"

override val permissionLevel: PermissionLevel = PermissionLevel.MODERATORS

Expand Down
2 changes: 1 addition & 1 deletion modules/common/app/common/api/commands/UptimeCommand.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import scala.concurrent.{ExecutionContext, Future}

trait UptimeCommand extends Command with DefaultLang {

override val name: String = "uptime"
override val name: String = "streamuptime"

override val permissionLevel: PermissionLevel = PermissionLevel.EVERYONE

Expand Down

0 comments on commit fead6ec

Please sign in to comment.