Decree system

This commit is contained in:
cyberpwn
2021-08-13 10:39:40 -04:00
parent f69c244080
commit 6ba9dc74d8
15 changed files with 648 additions and 216 deletions

View File

@@ -696,4 +696,9 @@ public class KList<T> extends ArrayList<T> implements List<T> {
t.shuffle(rng);
return t;
}
public KList<T> qdrop() {
pop();
return this;
}
}