fix loader constraint violation for WhiteListKickEvent

This commit is contained in:
destro174 2021-09-20 22:06:26 +02:00
parent a18f9bdbb5
commit 6baf52b248

View File

@ -28,5 +28,6 @@ public class WhitelistKickEvent {
return Collections.unmodifiableList(templates);
}
public void appendTemplates(Template... templates) {this.templates.addAll(List.of(templates));}
public void appendTemplates(Template template) {this.templates.add(template);}
// public void appendTemplates(Template... templates) {this.templates.addAll(List.of(templates));}
}