[AB-xxx] adding command to automatically ban all honeypot users

refactored honeypot listener into a service
fixing transfer credits not requiring the inputs
This commit is contained in:
Sheldan
2026-03-29 11:02:47 +02:00
parent 81b1688d97
commit 7f12ac7107
11 changed files with 325 additions and 87 deletions

View File

@@ -74,7 +74,6 @@ public class TransferCredits extends AbstractConditionableCommand {
.name(MEMBER_PARAMETER)
.templated(true)
.type(Member.class)
.optional(true)
.build();
Parameter amountParameter = Parameter
@@ -82,7 +81,6 @@ public class TransferCredits extends AbstractConditionableCommand {
.name(AMOUNT_PARAMETER)
.templated(true)
.type(Integer.class)
.optional(true)
.build();
List<Parameter> parameters = Arrays.asList(memberParameter, amountParameter);