Skip to content

Commit

Permalink
Merge pull request #40 from GTNewHorizons/star_fuel_changes
Browse files Browse the repository at this point in the history
Minor star fuel changes
  • Loading branch information
Dream-Master authored Jul 20, 2024
2 parents 29d70f4 + 207e4be commit 3272453
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
10 changes: 0 additions & 10 deletions src/main/java/fox/spiteful/avaritia/crafting/Grinder.java
Original file line number Diff line number Diff line change
Expand Up @@ -136,16 +136,6 @@ public static void artsAndCrafts() {
"C",
'C',
new ItemStack(LudicrousBlocks.resource_block, 1, 1));

GameRegistry.addShapedRecipe(
new ItemStack(LudicrousItems.resource, 13, 8),
"CCC",
"CIC",
"CCC",
'C',
new ItemStack(Blocks.coal_block, 1),
'I',
new ItemStack(LudicrousItems.resource, 1, 1));
GameRegistry.addShapedRecipe(
new ItemStack(LudicrousItems.resource, 1, 9),
" I ",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void registerIcons(IIconRegister ir) {
public void addInformation(ItemStack item, EntityPlayer player, List<String> tooltip, boolean wut) {

int meta = item.getItemDamage();
if (meta != 0 && meta < 8) {
if (meta != 0 && meta < 9) {
tooltip.add(
EnumChatFormatting.DARK_GRAY + ""
+ EnumChatFormatting.ITALIC
Expand Down

0 comments on commit 3272453

Please sign in to comment.