diff options
author | Technus <daniel112092@gmail.com> | 2016-10-03 01:24:40 +0200 |
---|---|---|
committer | Technus <daniel112092@gmail.com> | 2016-10-03 01:24:40 +0200 |
commit | 21c62c1848ae781d48972f77c59da0d8617fcf2a (patch) | |
tree | 95a3773637845ebd02bc15613491eb6a60934650 /src | |
parent | 5eb2065bd525737bd731e1f11d6e614984151dd4 (diff) | |
download | GT5-Unofficial-21c62c1848ae781d48972f77c59da0d8617fcf2a.tar.gz GT5-Unofficial-21c62c1848ae781d48972f77c59da0d8617fcf2a.tar.bz2 GT5-Unofficial-21c62c1848ae781d48972f77c59da0d8617fcf2a.zip |
Less annoying pollution
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gregtech/common/GT_Pollution.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/common/GT_Pollution.java b/src/main/java/gregtech/common/GT_Pollution.java index 63cc886312..7ba1049807 100644 --- a/src/main/java/gregtech/common/GT_Pollution.java +++ b/src/main/java/gregtech/common/GT_Pollution.java @@ -76,7 +76,7 @@ public class GT_Pollution { List<EntityLivingBase> tEntitys = aWorld.getEntitiesWithinAABB(EntityLivingBase.class, chunk); for(EntityLivingBase tEnt : tEntitys){ if(tRan.nextInt(tPollution/25000) > 10){ - tEnt.addPotionEffect(new PotionEffect(Potion.blindness.id, (int)Math.max((long)tPollution/500,1000), 1)); + tEnt.addPotionEffect(new PotionEffect(Potion.blindness.id, (int)Math.max((long)tPollution/1000,1000), 1)); } } // Poison effects @@ -85,7 +85,7 @@ public class GT_Pollution { //List<EntityLiving> tEntitys = aWorld.getEntitiesWithinAABB(EntityLiving.class, chunk); for(EntityLivingBase tEnt : tEntitys){ if(tRan.nextInt(tPollution/25000) > 20){ - tEnt.addPotionEffect(new PotionEffect(Potion.poison.id, (int)Math.max((long)tPollution/250,1000), 1)); + tEnt.addPotionEffect(new PotionEffect(Potion.poison.id, (int)Math.max((long)tPollution/4000,1000), 1)); } } // killing plants |