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 de.keridos.floodlights.client.render.block; | |
import de.keridos.floodlights.client.render.model.TileEntitySquareFluorescentLightModel; | |
import de.keridos.floodlights.reference.Textures; | |
import de.keridos.floodlights.tileentity.TileEntityGrowLight; | |
import de.keridos.floodlights.util.RenderUtil; | |
import net.minecraft.client.Minecraft; | |
import net.minecraft.client.renderer.Tessellator; | |
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer; | |
import net.minecraft.tileentity.TileEntity; |
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 openmodularturrets.tileentity.turretbase; | |
import cofh.api.energy.EnergyStorage; | |
import cofh.api.energy.IEnergyHandler; | |
import cpw.mods.fml.common.Optional; | |
import dan200.computercraft.api.lua.ILuaContext; | |
import dan200.computercraft.api.lua.LuaException; | |
import dan200.computercraft.api.peripheral.IComputerAccess; | |
import dan200.computercraft.api.peripheral.IPeripheral; | |
import li.cil.oc.api.machine.Arguments; |
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
---- Minecraft Crash Report ---- | |
WARNING: coremods are present: | |
CodeChickenCorePlugin (CodeChickenCore-1.9.4-2.0.4.71-universal.jar) | |
LoadingPlugin (Quark-beta-49.jar) | |
EnderCorePlugin (EnderCore-1.10.2-0.4.1.43-beta.jar) | |
CCCDeobfPlugin (unknown) | |
FMLPlugin (InventoryTweaks-1.61-58.jar) | |
CorePlugin (FluxedRedstone-2.2.1.44.jar) | |
CCLCorePlugin (CodeChickenLib-1.9.4-2.1.2.42-universal.jar) |
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
---- Minecraft Crash Report ---- | |
WARNING: coremods are present: | |
CodeChickenCorePlugin (CodeChickenCore-1.9.4-2.0.4.71-universal.jar) | |
LoadingPlugin (Quark-beta-49.jar) | |
EnderCorePlugin (EnderCore-1.10.2-0.4.1.43-beta.jar) | |
CCCDeobfPlugin (unknown) | |
FMLPlugin (InventoryTweaks-1.61-58.jar) | |
CorePlugin (FluxedRedstone-2.2.1.44.jar) | |
CCLCorePlugin (CodeChickenLib-1.9.4-2.1.2.42-universal.jar) |
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
---- Minecraft Crash Report ---- | |
WARNING: coremods are present: | |
LoadingPlugin (RandomThings-MC1.10-3.7.4.jar) | |
CodeChickenCorePlugin (CodeChickenCore-1.9.4-2.0.4.71-universal.jar) | |
LoadingPlugin (Quark-beta-49.jar) | |
EnderCorePlugin (EnderCore-1.10.2-0.4.1.43-beta.jar) | |
CCCDeobfPlugin (unknown) | |
FMLPlugin (InventoryTweaks-1.61-58.jar) | |
MalisisCorePlugin (malisiscore-1.9.4-4.0.2.jar) |
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
---- Minecraft Crash Report ---- | |
WARNING: coremods are present: | |
LoadingPlugin (RandomThings-MC1.10-3.7.4.jar) | |
CodeChickenCorePlugin (CodeChickenCore-1.9.4-2.0.4.71-universal.jar) | |
LoadingPlugin (Quark-beta-49.jar) | |
EnderCorePlugin (EnderCore-1.10.2-0.4.1.43-beta.jar) | |
CCCDeobfPlugin (unknown) | |
FMLPlugin (InventoryTweaks-1.61-58.jar) | |
MalisisCorePlugin (malisiscore-1.9.4-4.0.2.jar) |
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
02:58:58.032: CPU Name: Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz | |
02:58:58.032: CPU Speed: 4008MHz | |
02:58:58.032: Physical Cores: 4, Logical Cores: 8 | |
02:58:58.032: Physical Memory: 31651MB Total, 16344MB Free | |
02:58:58.032: Windows Version: 10.0 Build 14393 (revision: 351; 64-bit) | |
02:58:58.032: Running as administrator: false | |
02:58:58.032: Aero is Enabled (Aero is always on for windows 8 and above) | |
02:58:58.033: Portable mode: false | |
02:58:58.046: OBS 0.16.4 (64bit, windows) | |
02:58:58.046: --------------------------------- |
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 openmodularturrets.blocks; | |
import net.minecraft.block.Block; | |
import net.minecraft.block.SoundType; | |
import net.minecraft.block.material.Material; | |
import net.minecraft.block.properties.PropertyInteger; | |
import net.minecraft.block.state.BlockStateContainer; | |
import net.minecraft.block.state.IBlockState; | |
import net.minecraft.creativetab.CreativeTabs; | |
import net.minecraft.entity.EntityLivingBase; |
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 openmodularturrets.tileentity; | |
import net.minecraft.block.state.IBlockState; | |
import net.minecraft.nbt.NBTTagCompound; | |
import net.minecraft.network.NetworkManager; | |
import net.minecraft.network.play.server.SPacketUpdateTileEntity; | |
import net.minecraft.tileentity.TileEntity; | |
import net.minecraft.util.math.BlockPos; | |
import net.minecraft.world.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
{ | |
"forge_marker": 1, | |
"defaults": { | |
"model": "openmodularturrets:expander", | |
"transform": "forge:default-block" | |
}, | |
"variants": { | |
"normal": [{}], | |
"inventory": [{}], | |
"facing": { |