Fix permissions not being removed on Sponge

This commit is contained in:
Luck
2016-09-04 17:59:01 +01:00
Unverified
parent ed85eee36c
commit 770b7dc282
10 changed files with 84 additions and 117 deletions
@@ -35,7 +35,7 @@ public class TrackManager extends AbstractManager<String, Track> {
* @return a set of tracks that the groups could be a member of
*/
public Set<Track> getApplicableTracks(String group) {
return objects.values().stream()
return getAll().values().stream()
.filter(t -> t.containsGroup(group))
.collect(Collectors.toSet());
}