Changed the return type of SimpleAutoResponder#setPrefix

This commit is contained in:
mathias 2021-10-02 18:32:43 +02:00
parent a7f81e8dd2
commit 51e7a429cb
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

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;
} }
/** /**