fixed forge lighting being to bright and updated to-do list

This commit is contained in:
Mohammad-Ali Minaie
2018-09-26 09:38:34 -04:00
parent d7c4e390ea
commit 2c0c89f91b
2 changed files with 7 additions and 2 deletions

View File

@@ -3,7 +3,12 @@
## Bugs
## Current Feature
- [ ] FIX LONGBOW
- [x] Forge Light Level
- [ ] Check Forge Textures for lit
- [ ] Diamond + Redstone no texture
- [ ] Longbow Fire Speed
- [ ] Bloomery Print out
- [ ] Anvil cool down items
- [ ] Copper Tools
- [ ] Craft Tweaker Support
- [ ] Config Usage

View File

@@ -184,7 +184,7 @@ public class Forge extends CustomContainerFacing implements ITileEntityProvider,
public int getLightValue(IBlockState state, IBlockAccess world, BlockPos pos)
{
if(state.getValue(PrimalAPI.States.ACTIVE) == true){
return 15;
return 5;
}
return 0;
}