Update src/common/net/uberkat/obsidian/common/ObsidianIngots.java
Fixed one coal giving u nine coal. Now one coal block gives u nine coal. Plus I updated the Version Number to X.X.2
This commit is contained in:
parent
cf4221d1d6
commit
19e4e405eb
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
package net.uberkat.obsidian.common;
|
||||
|
||||
//PENIS
|
||||
import java.io.*;
|
||||
import java.net.HttpURLConnection;
|
||||
import java.net.InetAddress;
|
||||
|
@ -31,7 +31,7 @@ import cpw.mods.fml.common.registry.TickRegistry;
|
|||
* @author AidanBrady
|
||||
*
|
||||
*/
|
||||
@Mod(modid = "ObsidianIngots", name = "Obsidian Ingots", version = "4.0.1")
|
||||
@Mod(modid = "ObsidianIngots", name = "Obsidian Ingots", version = "4.0.2")
|
||||
@NetworkMod(channels = { "ObsidianIngots" }, clientSideRequired = true, serverSideRequired = false, packetHandler = PacketHandler.class)
|
||||
public class ObsidianIngots
|
||||
{
|
||||
|
@ -247,7 +247,7 @@ public class ObsidianIngots
|
|||
" ^", "I ", Character.valueOf('^'), Item.ingotGold, Character.valueOf('I'), Item.stick
|
||||
});
|
||||
GameRegistry.addRecipe(new ItemStack(Item.coal, 9), new Object[] {
|
||||
"*", Character.valueOf('*'), Item.coal
|
||||
"*", Character.valueOf('*'), CoalBlock
|
||||
});
|
||||
GameRegistry.addRecipe(new ItemStack(CoalBlock, 1), new Object[] {
|
||||
"***", "***", "***", Character.valueOf('*'), Item.coal
|
||||
|
|
Loading…
Add table
Reference in a new issue