mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-24 19:46:32 +01:00
Fix Sponge persisted subject parent serialisation
This commit is contained in:
parent
8c1c5c820c
commit
926195efc4
@ -252,7 +252,7 @@ public class SubjectDataContainer {
|
|||||||
for (LPSubjectReference ref : e.getValue()) {
|
for (LPSubjectReference ref : e.getValue()) {
|
||||||
JsonObject parent = new JsonObject();
|
JsonObject parent = new JsonObject();
|
||||||
parent.addProperty("collection", ref.getCollectionIdentifier());
|
parent.addProperty("collection", ref.getCollectionIdentifier());
|
||||||
parent.addProperty("subject", ref.getCollectionIdentifier());
|
parent.addProperty("subject", ref.getSubjectIdentifier());
|
||||||
data.add(parent);
|
data.add(parent);
|
||||||
}
|
}
|
||||||
section.add("data", data);
|
section.add("data", data);
|
||||||
|
Loading…
Reference in New Issue
Block a user