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
| if(this instanceof LMHNative1) | |
| { | |
| public int getMaxSpawnedInChunk(){return 3;} | |
| } |
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; | |
| import java.util.List; | |
| public class LMHEntityBase extends EntityMob | |
| { | |
| public LMHEntityBase(World world) | |
| { | |
| super(world); |
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
| eNative) | |
| ^ | |
| sources\minecraft\net\minecraft\src\LMHEntityBase.java:32: illegal start of type | |
| if(this instanceof LMHNative1 || this instanceof LMHNative2 || this instanceo | |
| f LMHBarbarian || this instanceof LMHFemaleBarbarian || this instanceof LMHFemal | |
| eNative) | |
| ^ | |
| sources\minecraft\net\minecraft\src\LMHEntityBase.java:32: ')' expected | |
| if(this instanceof LMHNative1 || this instanceof LMHNative2 || this instanceo |
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; | |
| import java.util.List; | |
| public class LMHNative1 extends EntityMob | |
| { | |
| public LMHNative1(World world) | |
| { | |
| super(world); |
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; | |
| import java.io.PrintStream; | |
| import java.util.*; | |
| public class SewingCraftingManager | |
| { | |
| public static final SewingCraftingManager getInstance() | |
| { |
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
| protected String getHurtSound() | |
| { | |
| return "FemaleHurt"; | |
| } |
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
| protected void dropFewItems() | |
| { | |
| int i = rand.nextInt(3); | |
| for(int k = 0; k < i; k++) | |
| { | |
| dropItem(Item.bone.shiftedIndex, 1); | |
| } | |
| if(rand.nextInt(20)==0) | |
| { | |
| dropItem(mod_LotsMoreHumans.LMHBattleAxe.shiftedIndex, 1); |
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; | |
| import java.io.*; | |
| import java.io.PrintStream; | |
| import java.util.Properties; | |
| import net.minecraft.client.Minecraft; | |
| public class mod_Carpets extends BaseMod | |
| { |
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); | |
| } |