public void onClientPacket(ClientCustomPacketEvent event)
{
// This method receives the TerrainControl packet with the custom
// biome colors and weather.
FMLProxyPacket receivedPacket = event.packet;
// We're on the client, receive the packet
ByteBuf stream = receivedPacket.payload();
try
{
int serverProtocolVersion = stream.readInt();
int clientProtocolVersion = PluginStandardValues.ProtocolVersion;
if (serverProtocolVersion == clientProtocolVersion)