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