@@ -79,7 +79,7 @@ protected void processOreProspecting(DetravMetaGeneratedTool01 aItem, ItemStack
7979 if (aTileEntity instanceof GT_TileEntity_Ores ) {
8080 GT_TileEntity_Ores gt_entity = (GT_TileEntity_Ores ) aTileEntity ;
8181 short meta = gt_entity .getMetaData ();
82- String name = Materials . getLocalizedNameForItem ( GT_LanguageManager .getTranslation ("gt.blockores." + meta + ".name" ), meta );
82+ String name = GT_LanguageManager .getTranslation ("gt.blockores." + meta + ".name" );
8383 addChatMassageByValue (aPlayer , -1 , name );
8484 if (!aPlayer .capabilities .isCreativeMode )
8585 aItem .doDamage (aStack , this .mCosts );
@@ -119,8 +119,8 @@ protected void processOreProspecting(DetravMetaGeneratedTool01 aItem, ItemStack
119119 tMetaID = (short )((GT_TileEntity_Ores ) tTileEntity ).getMetaData ();
120120 try {
121121
122- String name = Materials . getLocalizedNameForItem (
123- GT_LanguageManager .getTranslation (tBlock .getUnlocalizedName () + "." + tMetaID + ".name" ), tMetaID ) ;
122+ String name =
123+ GT_LanguageManager .getTranslation (tBlock .getUnlocalizedName () + "." + tMetaID + ".name" );
124124 if (name .startsWith ("Small" )) if (data != 1 ) continue ;
125125 if (name .startsWith ("Small" )) if (data !=1 ) continue ;
126126 if (!ores .containsKey (name ))
@@ -148,8 +148,8 @@ protected void processOreProspecting(DetravMetaGeneratedTool01 aItem, ItemStack
148148 try {
149149 try {
150150 tMetaID = (short )tAssotiation .mMaterial .mMaterial .mMetaItemSubID ;
151- String name = Materials . getLocalizedNameForItem ( GT_LanguageManager .getTranslation (
152- "gt.blockores." + tMetaID + ".name" ), tMetaID ) ;
151+ String name =GT_LanguageManager .getTranslation (
152+ "gt.blockores." + tMetaID + ".name" );
153153 if (!ores .containsKey (name ))
154154 ores .put (name , 1 );
155155 else {
0 commit comments