-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from msifd/master
Add server compatibility
- Loading branch information
Showing
50 changed files
with
2,768 additions
and
2,932 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.gradle/** | ||
build/** | ||
out/** | ||
eclipse/** |
This file contains 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
This file contains 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
32 changes: 16 additions & 16 deletions
32
src/main/java/clothingcraft/blocks/BlockCottonFabric.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
/** | ||
* | ||
* | ||
*/ | ||
package clothingcraft.blocks; | ||
|
||
import clothingcraft.core.ClothingCraft; | ||
import clothingcraft.client.ClientProxy; | ||
import clothingcraft.core.ClothingCraftInfo; | ||
import net.minecraft.block.Block; | ||
import net.minecraft.block.material.Material; | ||
|
||
/** | ||
* block of material resulting in combining rock salt | ||
* | ||
* | ||
* @author JujuAwesomeBeans | ||
* @author NinjaSoldier40 | ||
* @since 02/11/2017 01:55 PM (-07:00 GMT) | ||
*/ | ||
public class BlockCottonFabric extends Block { | ||
|
||
protected BlockCottonFabric(Material mat) { | ||
super(mat); | ||
this.setHardness(1.0F); | ||
this.setResistance(3.0F); | ||
this.setLightLevel(15.0F); | ||
this.setBlockName("cotton_fabric_bundle"); | ||
this.setBlockTextureName(ClothingCraftInfo.MODID + ":cotton_fabric_bundle"); | ||
this.setLightOpacity(225); | ||
this.setStepSound(Block.soundTypeGravel); | ||
this.setCreativeTab(ClothingCraft.tabCore); | ||
this.setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F); | ||
this.setHarvestLevel("pickaxe", 0); | ||
} | ||
protected BlockCottonFabric(Material mat) { | ||
super(mat); | ||
this.setHardness(1.0F); | ||
this.setResistance(3.0F); | ||
this.setLightLevel(15.0F); | ||
this.setBlockName("cotton_fabric_bundle"); | ||
this.setBlockTextureName(ClothingCraftInfo.MODID + ":cotton_fabric_bundle"); | ||
this.setLightOpacity(225); | ||
this.setStepSound(Block.soundTypeGravel); | ||
this.setCreativeTab(ClientProxy.tabCore); | ||
this.setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F); | ||
this.setHarvestLevel("pickaxe", 0); | ||
} | ||
|
||
} |
This file contains 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
Oops, something went wrong.