diff options
author | D-Cysteine <54219287+D-Cysteine@users.noreply.github.com> | 2021-10-19 22:58:21 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 22:58:21 -0600 |
commit | cbbd2f00df7a0b781a53fd2c7c0b0e5326faedd1 (patch) | |
tree | 7d1f739641b1d45ec52a4b78343ceb3da8081d21 /src/main/java/gregtech | |
parent | 2ad55d3e6c3fb7915a12be4291887373522b878f (diff) | |
download | GT5-Unofficial-cbbd2f00df7a0b781a53fd2c7c0b0e5326faedd1.tar.gz GT5-Unofficial-cbbd2f00df7a0b781a53fd2c7c0b0e5326faedd1.tar.bz2 GT5-Unofficial-cbbd2f00df7a0b781a53fd2c7c0b0e5326faedd1.zip |
Fix comment grammar
Diffstat (limited to 'src/main/java/gregtech')
-rw-r--r-- | src/main/java/gregtech/api/util/GT_Utility.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/util/GT_Utility.java b/src/main/java/gregtech/api/util/GT_Utility.java index 36925cbe5b..b3f3c6d666 100644 --- a/src/main/java/gregtech/api/util/GT_Utility.java +++ b/src/main/java/gregtech/api/util/GT_Utility.java @@ -2780,7 +2780,7 @@ public class GT_Utility { * We return {@code ItemStack} instead of {@code Block} so that we can include metadata. */ public static ItemStack getCobbleForOre(Block ore, short metaData) { - // We need to convert to small ores to regular ores because small ores don't have associated ItemData. + // We need to convert small ores to regular ores because small ores don't have associated ItemData. // We take the modulus of the metadata by 16000 because that is the magic number to convert small ores to regular ores. // See: GT_TileEntity_Ores.java ItemData association = GT_OreDictUnificator.getAssociation(new ItemStack(Item.getItemFromBlock(ore), 1, metaData % 16000)); |