Use ProtocolConstants instead of raw protocol numbers

This commit is contained in:
Thinkofdeath
2014-04-16 14:57:09 +01:00
parent 6775b9230c
commit 6475385f87
2 changed files with 6 additions and 6 deletions

View File

@@ -25,11 +25,11 @@ public abstract class EntityMap
{
switch ( version )
{
case 4:
case ProtocolConstants.MINECRAFT_1_7_2:
return new EntityMap_1_7_2();
case 5:
case ProtocolConstants.MINECRAFT_1_7_6:
return new EntityMap_1_7_6();
case 14:
case ProtocolConstants.MINECRAFT_14_11_a:
return new EntityMap_14_11_a();
}
throw new RuntimeException( "Version " + version + " has no entity map" );