Archiviert
13
0

Construct missing packet types. Possible fix for #197.

Dieser Commit ist enthalten in:
Kristian S. Stangeland 2014-01-28 01:38:34 +01:00
Ursprung fb07a91fb0
Commit bf8c16e22d

Datei anzeigen

@ -311,7 +311,7 @@ public class PacketRegistry {
Set<PacketType> result = Sets.newHashSet();
for (int id : ids)
result.add(PacketType.findLegacy(id, preference));
result.add(PacketType.fromLegacy(id, preference));
return Collections.unmodifiableSet(result);
}