Updated forge and mappings

This commit is contained in:
drcrazy 2019-04-01 17:22:59 +03:00
parent 67c9c8721e
commit c122a480e5
2 changed files with 4 additions and 4 deletions

View file

@ -65,7 +65,7 @@ if (ENV.BUILD_NUMBER) {
} }
minecraft { minecraft {
mappings channel: 'snapshot', version: '20190222-1.13.1' mappings channel: 'snapshot', version: '20190401-1.13.2'
runs { runs {
client { client {
@ -107,7 +107,7 @@ license {
group = 'TechReborn' group = 'TechReborn'
dependencies { dependencies {
minecraft 'net.minecraftforge:forge:1.13.2-25.0.70' minecraft 'net.minecraftforge:forge:1.13.2-25.0.107'
if (findProject(':reborncore') != null) { if (findProject(':reborncore') != null) {
compile project(":reborncore") compile project(":reborncore")

View file

@ -81,8 +81,8 @@ public class BlockNuke extends BaseBlock {
if (!worldIn.isRemote && entityIn instanceof EntityArrow) { if (!worldIn.isRemote && entityIn instanceof EntityArrow) {
EntityArrow entityarrow = (EntityArrow) entityIn; EntityArrow entityarrow = (EntityArrow) entityIn;
EntityLivingBase shooter = null; EntityLivingBase shooter = null;
if (entityarrow.func_212360_k() instanceof EntityLivingBase) { if (entityarrow.getShooter() instanceof EntityLivingBase) {
shooter = (EntityLivingBase) entityarrow.func_212360_k(); shooter = (EntityLivingBase) entityarrow.getShooter();
} }
if (entityarrow.isBurning()) { if (entityarrow.isBurning()) {
ignite(worldIn, pos, state, shooter); ignite(worldIn, pos, state, shooter);