This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.minecraft.src; | |
| public class BlockCarpet extends Block | |
| { | |
| protected BlockCarpet(int i) | |
| { | |
| super(i, Material.cloth); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.minecraft.src; | |
| public class mod_Carpets extends BaseMod | |
| { | |
| public String Version() | |
| { | |
| return "1.5_01"; | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.minecraft.src; | |
| public class SlotSewingMachine extends Slot | |
| { | |
| public SlotSewingMachine(IInventory iinventory, int i, int j, int k) | |
| { | |
| super(iinventory, i, j, k); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // From ContainerSewingMachine | |
| { | |
| addSlot(new SlotSewingMachine(craftMatrix, k1 + l * 3, 30 + k1 * 18, 17 + l * 18)); | |
| } | |
| // SlotSewingMachine | |
| package net.minecraft.src; | |
| public class SlotSewingMachine extends Slot | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public boolean isOpaqueCube() | |
| { | |
| return false; | |
| } | |
| public boolean shouldSideBeRendered(IBlockAccess iblockaccess, int i, int j, int k, int l) | |
| { | |
| return true; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.minecraft.src; | |
| public class mod_Carpets extends BaseMod | |
| { | |
| public String Version() | |
| { | |
| return "1.5_01"; | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.minecraft.src; | |
| public class BlockCarpet extends Block | |
| { | |
| protected BlockCarpet(int i) | |
| { | |
| super(i, Material.cloth); | |
| setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 0.125F, 1.0F); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.minecraft.src; | |
| public class BlockCarpet extends Block | |
| { | |
| public BlockCarpet() | |
| { | |
| super(120, 0, Material.cloth); | |
| setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 0.075F, 1.0F); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.minecraft.src; | |
| public class mod_Carpets extends BaseMod | |
| { | |
| public String Version() | |
| { | |
| return "1.5_01"; | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.minecraft.src; | |
| public class BlockCarpet extends Block | |
| { | |
| public BlockCarpet() | |
| { | |
| super(120, 0, Material.cloth); | |
| setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 0.075F, 1.0F); | |
| } |