aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorTechnus <daniel112092@gmail.com>2017-05-09 18:57:57 +0200
committerTechnus <daniel112092@gmail.com>2017-05-09 18:57:57 +0200
commit8c5fa1269b96243debf71eb527362971496de9d5 (patch)
tree5a868ccd3aadd150dd2bd591c105ba9845f330d2 /src/main
parent7cd941efede04d02b0dfda06c8c54c4d373a9afb (diff)
downloadGT5-Unofficial-8c5fa1269b96243debf71eb527362971496de9d5.tar.gz
GT5-Unofficial-8c5fa1269b96243debf71eb527362971496de9d5.tar.bz2
GT5-Unofficial-8c5fa1269b96243debf71eb527362971496de9d5.zip
Missing Imports and typo fix in comment.
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/gregtech/common/GT_Pollution.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/GT_Pollution.java b/src/main/java/gregtech/common/GT_Pollution.java
index 7898e29142..281a776dcc 100644
--- a/src/main/java/gregtech/common/GT_Pollution.java
+++ b/src/main/java/gregtech/common/GT_Pollution.java
@@ -13,6 +13,7 @@ import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.world.ChunkCoordIntPair;
+import net.minecraft.world.ChunkPosition;
import net.minecraft.world.World;
import net.minecraft.world.chunk.Chunk;
@@ -265,7 +266,7 @@ public class GT_Pollution {
@Deprecated /*Don't use it... too weird way of passing position*/
public static void addPollution(World aWorld, ChunkPosition aPos, int aPollution){
//The abuse of ChunkPosition to store block position and dim...
- //is just bad expacially when that is both used to store ChunkPos and BlockPos depeending on context
+ //is just bad especially when that is both used to store ChunkPos and BlockPos depending on context
addPollution(aWorld.getChunkFromBlockCoords(aPos.chunkPosX,aPos.chunkPosZ),aPollution);
}
}