Skip to content

Commit a92d6b9

Browse files
authored
Merge pull request #78 from Hammer86gn/master
Fixed cowsay
2 parents 3068b1c + 191f212 commit a92d6b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/diamondfire/helpbot/bot/command/impl/other/fun/CowsayCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.diamondfire.helpbot.bot.command.impl.other.fun;
22

33
import com.diamondfire.helpbot.bot.command.argument.ArgumentSet;
4-
import com.diamondfire.helpbot.bot.command.argument.impl.types.StringArgument;
4+
import com.diamondfire.helpbot.bot.command.argument.impl.types.EndlessStringArgument;
55
import com.diamondfire.helpbot.bot.command.help.*;
66
import com.diamondfire.helpbot.bot.command.impl.Command;
77
import com.diamondfire.helpbot.bot.command.permissions.Permission;
@@ -25,7 +25,7 @@ public HelpContext getHelpContext() {
2525

2626
@Override
2727
protected ArgumentSet compileArguments() {
28-
return new ArgumentSet().addArgument("message", new StringArgument());
28+
return new ArgumentSet().addArgument("message", new EndlessStringArgument());
2929
}
3030

3131
@Override

0 commit comments

Comments
 (0)