More mappings and a small little fix

This commit is contained in:
Adubbz 2014-09-25 10:27:36 +10:00
parent 5e482716cd
commit 5ee76dbe22
1 changed files with 22 additions and 1 deletions

View File

@ -29,6 +29,8 @@ func_176213_c - onBlockAdded
func_180633_a - onBlockPlacedBy func_180633_a - onBlockPlacedBy
func_180651_a - damageDropped func_180651_a - damageDropped
func_180663_b - breakBlock func_180663_b - breakBlock
func_180656_a - isProvidingWeakPower
func_180642_a - onBlockPlaced
—Item— —Item—
func_180614_a - onItemUse func_180614_a - onItemUse
@ -46,6 +48,8 @@ func_175623_d - isAirBlock
func_175690_a - setTileEntity func_175690_a - setTileEntity
func_175689_h - markBlockForUpdate func_175689_h - markBlockForUpdate
func_175641_c - addBlockEvent func_175641_c - addBlockEvent
func_180501_a - setBlock
func_175726_f - getChunkFromBlockCoords
—RegistryNamespaced— —RegistryNamespaced—
func_177775_a - addObject func_177775_a - addObject
@ -61,6 +65,12 @@ ESTIMATES
—IBlockAccess— —IBlockAccess—
func_180495_p - getBlockState func_180495_p - getBlockState
—World—
func_175701_a - isPosInBoundaries
—Chunk—
func_177435_g - getBlockState
—Block—- —Block—-
func_180661_e - createBlockState func_180661_e - createBlockState
func_176194_O - getBlockState func_176194_O - getBlockState
@ -153,3 +163,14 @@ field_177992_a - ORIGIN
—IStringSerializable— —IStringSerializable—
func_176610_l - getID func_176610_l - getID
——————————
FIXES
——————————
—GameData—
static Block findBlock(String modId, String name)
{
ResourceLocation key = new ResourceLocation(modId + ":" + name);
return getMain().iBlockRegistry.containsKey(key) ? getMain().iBlockRegistry.getObject(key) : null;
}