diff --git a/sponge/src/main/java/me/lucko/luckperms/sponge/service/SimpleDescription.java b/sponge/src/main/java/me/lucko/luckperms/sponge/service/SimpleDescription.java index 548a999d7..d876b4c15 100644 --- a/sponge/src/main/java/me/lucko/luckperms/sponge/service/SimpleDescription.java +++ b/sponge/src/main/java/me/lucko/luckperms/sponge/service/SimpleDescription.java @@ -83,12 +83,12 @@ public final class SimpleDescription implements LPPermissionDescription { @Override public CompletableFuture> findAssignedSubjects(String id) { LPSubjectCollection collection = service.getCollection(id); - return (CompletableFuture) collection.getAllWithPermission(id); + return (CompletableFuture) collection.getAllWithPermission(this.id); } @Override public Map getAssignedSubjects(String id) { LPSubjectCollection collection = service.getCollection(id); - return collection.getLoadedWithPermission(id); + return collection.getLoadedWithPermission(this.id); } }