Removes unrequired part helper getter, since it already existed

This commit is contained in:
thatsIch
2015-04-20 21:12:03 +02:00
parent 817163dbf6
commit be17616836
5 changed files with 6 additions and 12 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ public enum PartRegistry
try
{
if( this == CableBusPart )
return (TMultiPart) Api.INSTANCE.getPartHelper().getCombinedInstance( this.part.getName() ).newInstance();
return (TMultiPart) Api.INSTANCE.partHelper().getCombinedInstance( this.part.getName() ).newInstance();
else
return this.part.getConstructor( int.class ).newInstance( meta );
}