Move some stuff around in RC

This commit is contained in:
modmuss50 2018-07-20 22:02:46 +01:00
parent f78abb1a21
commit 95b49e5e23
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82
110 changed files with 307 additions and 456 deletions

View file

@ -39,8 +39,8 @@ import net.minecraft.util.IStringSerializable;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import prospector.shootingstar.ShootingStar;
import prospector.shootingstar.model.ModelCompound;
import reborncore.client.models.ModelCompound;
import reborncore.client.models.RebornModelRegistry;
import techreborn.lib.ModInfo;
import techreborn.utils.TechRebornCreativeTab;
@ -67,7 +67,7 @@ public abstract class BlockRubberPlankSlab extends BlockSlab {
setSoundType(SoundType.WOOD);
this.setDefaultState(iblockstate.withProperty(VARIANT, BlockRubberPlankSlab.Variant.DEFAULT));
useNeighborBrightness = true;
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this));
RebornModelRegistry.registerModel(new ModelCompound(ModInfo.MOD_ID, this));
}
@Override