From a75a2dd4c60e066c8bf2a708cbf0eaac633e259d Mon Sep 17 00:00:00 2001 From: ExtraMeteorP <1579205460@qq.com> Date: Sun, 6 Aug 2017 17:15:12 +0800 Subject: [PATCH 1/3] Update 1.7.10.txt --- build/1.7.10.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/1.7.10.txt b/build/1.7.10.txt index fe71e87..f8e5683 100644 --- a/build/1.7.10.txt +++ b/build/1.7.10.txt @@ -1 +1 @@ -r1.0-20 \ No newline at end of file +r1.0-21 From c481252b0d77839fd4b55c9749d96b4def372843 Mon Sep 17 00:00:00 2001 From: paihuai Date: Thu, 3 May 2018 21:48:31 +0800 Subject: [PATCH 2/3] Prevent infinite GaiaIIIDark respawn Prevent infinite GaiaIIIDark respawn --- .../meteor/extrabotany/common/entity/gaia/EntityGaiaIII.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/meteor/extrabotany/common/entity/gaia/EntityGaiaIII.java b/src/main/java/com/meteor/extrabotany/common/entity/gaia/EntityGaiaIII.java index 5ce6436..cde462a 100644 --- a/src/main/java/com/meteor/extrabotany/common/entity/gaia/EntityGaiaIII.java +++ b/src/main/java/com/meteor/extrabotany/common/entity/gaia/EntityGaiaIII.java @@ -446,7 +446,8 @@ public void onDeath(DamageSource p_70645_1_) { ((EntityPlayer) entitylivingbase).addStat(ModAchievement.Gaia_gaia3NoArmor, 1); } - EntityGaiaIIIDark.spawn(this.worldObj, getSource().posX,getSource().posY,getSource().posZ, true, this); + if (!(this instanceof EntityGaiaIIIDark)) // Prevent infinite GaiaIIIDark respawn + EntityGaiaIIIDark.spawn(this.worldObj, getSource().posX,getSource().posY,getSource().posZ, true, this); worldObj.playSoundAtEntity(this, "random.explode", 20F, (1F + (worldObj.rand.nextFloat() - worldObj.rand.nextFloat()) * 0.2F) * 0.7F); worldObj.spawnParticle("hugeexplosion", posX, posY, posZ, 1D, 0D, 0D); From f1ee291143b407f436aa5d0069f635f611cb2bc9 Mon Sep 17 00:00:00 2001 From: ExtraMeteorP <1579205460@qq.com> Date: Wed, 18 Jul 2018 19:55:35 +0800 Subject: [PATCH 3/3] Update 1.7.10.txt --- build/1.7.10.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/1.7.10.txt b/build/1.7.10.txt index f8e5683..8590320 100644 --- a/build/1.7.10.txt +++ b/build/1.7.10.txt @@ -1 +1 @@ -r1.0-21 +r1.0-22