Add protocol version for 1.9.2

This commit is contained in:
Dan Mulloy 2016-04-03 00:49:04 -04:00
parent ceecd51982
commit 688da1a1bb

View File

@ -40,6 +40,7 @@ public class MinecraftProtocolVersion {
map.put(new MinecraftVersion(1, 7, 6), 5);
map.put(new MinecraftVersion(1, 8, 0), 47);
map.put(new MinecraftVersion(1, 9, 0), 107);
map.put(new MinecraftVersion(1, 9, 2), 109);
return map;
}