Replaces all method parameter regarding their naming conventions
This commit is contained in:
@@ -141,9 +141,9 @@ public class MatterCannonAmmoRegistry implements IOreListener, IMatterCannonAmmo
|
||||
this.considerItem( name, item, "Electrum", ( 107.8682 + 196.96655 ) / 2.0 );
|
||||
}
|
||||
|
||||
private void considerItem( String ore, ItemStack item, String Name, double weight )
|
||||
private void considerItem( String ore, ItemStack item, String name, double weight )
|
||||
{
|
||||
if( ore.equals( "berry" + Name ) || ore.equals( "nugget" + Name ) )
|
||||
if( ore.equals( "berry" + name ) || ore.equals( "nugget" + name ) )
|
||||
{
|
||||
this.registerAmmo( item, weight );
|
||||
}
|
||||
|
||||
@@ -122,9 +122,9 @@ public class P2PTunnelRegistry implements IP2PTunnelRegistry
|
||||
this.Tunnels.put( trigger, type );
|
||||
}
|
||||
|
||||
public ItemStack getModItem( String modID, String Name, int meta )
|
||||
public ItemStack getModItem( String modID, String name, int meta )
|
||||
{
|
||||
ItemStack myItemStack = GameRegistry.findItemStack( modID, Name, 1 );
|
||||
ItemStack myItemStack = GameRegistry.findItemStack( modID, name, 1 );
|
||||
|
||||
if( myItemStack == null )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user