mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 10:12:53 +00:00
ok
This commit is contained in:
parent
466cc84c16
commit
e46b335dc0
@ -77,7 +77,8 @@ public class DecreeNode {
|
||||
}
|
||||
|
||||
public KList<String> getNames() {
|
||||
KList<String> d = new KList<>(getName());
|
||||
KList<String> d = new KList<>();
|
||||
d.add(getName());
|
||||
|
||||
for (String i : decree.aliases()) {
|
||||
if (i.isEmpty()) {
|
||||
|
@ -162,7 +162,8 @@ public class VirtualDecreeCommand {
|
||||
}
|
||||
|
||||
Decree dc = getType().getDeclaredAnnotation(Decree.class);
|
||||
KList<String> d = new KList<>(dc.name());
|
||||
KList<String> d = new KList<>();
|
||||
d.add(dc.name());
|
||||
for (String i : dc.aliases()) {
|
||||
if (i.isEmpty()) {
|
||||
continue;
|
||||
|
Loading…
x
Reference in New Issue
Block a user