Updated forge and mappings
This commit is contained in:
parent
67c9c8721e
commit
c122a480e5
2 changed files with 4 additions and 4 deletions
|
@ -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")
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Add table
Reference in a new issue