Changed the return type of SimpleAutoResponder#setPrefix

This commit is contained in:
2021-10-02 18:32:43 +02:00
parent a7f81e8dd2
commit 51e7a429cb

View File

@@ -123,8 +123,9 @@ public class SimpleAutoResponder {
* *
* @param prefix The new command prefix * @param prefix The new command prefix
*/ */
public void setPrefix(String prefix) { public SimpleAutoResponder setPrefix(String prefix) {
this.prefix = prefix; this.prefix = prefix;
return this;
} }
/** /**