Changed to using hashmap instead of templates directly
This commit is contained in:
parent
31cde0bba0
commit
1a96dd3423
|
|
@ -3,8 +3,7 @@ package com.alttd.shutdowninfo.events;
|
||||||
import com.velocitypowered.api.proxy.Player;
|
import com.velocitypowered.api.proxy.Player;
|
||||||
import net.kyori.adventure.text.minimessage.Template;
|
import net.kyori.adventure.text.minimessage.Template;
|
||||||
|
|
||||||
import java.util.Collections;
|
import java.util.*;
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class WhitelistKickEvent {
|
public class WhitelistKickEvent {
|
||||||
private final Player player;
|
private final Player player;
|
||||||
|
|
@ -28,5 +27,9 @@ public class WhitelistKickEvent {
|
||||||
return Collections.unmodifiableList(templates);
|
return Collections.unmodifiableList(templates);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void appendTemplate(Template template) {this.templates.add(template);}
|
public void appendTemplate(HashMap<String, String> templateMap) {
|
||||||
|
for (Map.Entry<String, String> entry : templateMap.entrySet()) {
|
||||||
|
templates.add(Template.of(entry.getKey(), entry.getValue()));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user