Fix too many registries being sent from server to client
Signed-off-by: cpw <cpw+github@weeksfamily.ca>
This commit is contained in:
parent
216b536967
commit
e5acea60e6
2 changed files with 5 additions and 3 deletions
|
@ -62,7 +62,7 @@ public class FMLHandshakeMessages
|
|||
{
|
||||
this.mods = ModList.get().getMods().stream().map(ModInfo::getModId).collect(Collectors.toList());
|
||||
this.channels = NetworkRegistry.buildChannelVersions();
|
||||
this.registries = RegistryManager.registryNames();
|
||||
this.registries = RegistryManager.getRegistryNamesForSyncToClient();
|
||||
}
|
||||
|
||||
private S2CModList(List<String> mods, Map<ResourceLocation, String> channels, List<ResourceLocation> registries)
|
||||
|
|
|
@ -190,8 +190,10 @@ public class RegistryManager
|
|||
collect(Collectors.toList()) : Collections.emptyList();
|
||||
}
|
||||
|
||||
public static List<ResourceLocation> registryNames()
|
||||
public static List<ResourceLocation> getRegistryNamesForSyncToClient()
|
||||
{
|
||||
return new ArrayList<>(ACTIVE.registries.keySet());
|
||||
return ACTIVE.registries.keySet().stream().
|
||||
filter(resloc -> ACTIVE.synced.contains(resloc)).
|
||||
collect(Collectors.toList());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue