Skip to content

Commit

Permalink
Rename Mentions of Greenhouse -> Growth Chamber (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
dtcameron authored Aug 19, 2024
1 parent c8aebb2 commit e490231
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
- Allow refreshing of GregTech CEu recycling recipes at any time, allowing for these to be changed with GroovyScript's reload feature
- More planned!
- Configs, allowing for disabling of different features, allowing for a wider range of usage
- More to come, such as custom GT content, improved custom multiblocks, new multiblocks (a greenhouse, which alllows for better automation of plant-related materials over EIO Farmers, is already available), and more custom textures!
- More to come, such as custom GT content, improved custom multiblocks, new multiblocks (a growth chamber, which allows for better automation of plant-related materials over EIO Farmers, is already available), and more custom textures!

## Translations
Translations are offered for Nomi Labs, in a separate 'language pack'. This is available to download [here](https://nightly.link/Nomi-CEu/Nomi-CEu-Translations/workflows/pushbuildpack/main?preview) (download the 'nomi-labs' zip for Nomi Labs).
Expand Down
6 changes: 3 additions & 3 deletions src/main/groovy-tests/jeiTests.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ println('Translatable Object: ' + translatableObj.translate())
addDescription(item('minecraft:apple'), translatableLiteral('An Ordinary Apple... Not Poisoned.').addFormat(TextFormatting.DARK_GREEN), translatableLiteral('Eat it!'))

// Add a translated description page for a stack
addDescription(item('minecraft:iron_ingot'), translatable('tooltip.nomilabs.greenhouse.description'), translatable('tooltip.nomilabs.dme_sim_chamber.description'))
addDescription(item('minecraft:iron_ingot'), translatable('tooltip.nomilabs.growth_chamber.description'), translatable('tooltip.nomilabs.dme_sim_chamber.description'))

/*
* Recipe Output Tooltips. These are tooltips that appear on CRAFTING TABLE recipes that output that stack.
Expand All @@ -58,10 +58,10 @@ addDescription(item('minecraft:iron_ingot'), translatable('tooltip.nomilabs.gree
addRecipeOutputTooltip(item('minecraft:gold_ingot'), translatableLiteral('A Very Low Carrot Gold Ingot.').addFormat(TextFormatting.GOLD))

// Add a translated crafting recipe output tooltip for a stack
addRecipeOutputTooltip(item('minecraft:iron_ingot'), translatable('tooltip.nomilabs.greenhouse.description'), translatable('tooltip.nomilabs.dme_sim_chamber.description'))
addRecipeOutputTooltip(item('minecraft:iron_ingot'), translatable('tooltip.nomilabs.growth_chamber.description'), translatable('tooltip.nomilabs.dme_sim_chamber.description'))

// Add a crafting recipe output tooltip for a specific recipe for a stack (Higher Priority than wild recipe name)
addRecipeOutputTooltip(item('minecraft:gold_ingot'), resource('minecraft:gold_ingot_from_block'), translatableLiteral('A Very High Carrot Gold Ingot.').addFormat(TextFormatting.GOLD))

// Add a translated crafting recipe output tooltip for a specific recipe for a stack (Higher Priority than wild recipe name)
addRecipeOutputTooltip(item('minecraft:iron_ingot'), resource('minecraft:iron_ingot_from_nuggets'), translatable('tooltip.nomilabs.universalnavigator.description'), translatable('tooltip.nomilabs.greenhouse.description'), translatable('tooltip.nomilabs.dme_sim_chamber.description'))
addRecipeOutputTooltip(item('minecraft:iron_ingot'), resource('minecraft:iron_ingot_from_nuggets'), translatable('tooltip.nomilabs.universalnavigator.description'), translatable('tooltip.nomilabs.growth_chamber.description'), translatable('tooltip.nomilabs.dme_sim_chamber.description'))
4 changes: 2 additions & 2 deletions src/main/java/com/nomiceu/nomilabs/gregtech/LabsTextures.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
public class LabsTextures {

/* Overlays (Machine) */
public static OrientedOverlayRenderer GREENHOUSE_OVERLAY;
public static OrientedOverlayRenderer GROWTH_CHAMBER_OVERLAY;

/* Overlays (Casings) */
public static SimpleOverlayRenderer MICROVERSE_CASING;
Expand All @@ -18,7 +18,7 @@ public class LabsTextures {
public static TextureArea PROGRESS_BAR_ROCKET;

public static void preInit() {
GREENHOUSE_OVERLAY = new OrientedOverlayRenderer("nomilabs:multiblock/greenhouse");
GROWTH_CHAMBER_OVERLAY = new OrientedOverlayRenderer("nomilabs:multiblock/growth_chamber");
MICROVERSE_CASING = new SimpleOverlayRenderer("nomilabs:microverse_casing");
PROGRESS_BAR_ROCKET = labsFullImage("textures/gui/progress_bar/progress_bar_rocket.png");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ protected TraceabilityPredicate getCasingPredicatePipe() {
@SideOnly(Side.CLIENT)
@NotNull
protected ICubeRenderer getFrontOverlay() {
return LabsTextures.GREENHOUSE_OVERLAY;
return LabsTextures.GROWTH_CHAMBER_OVERLAY;
}

@Override
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes

0 comments on commit e490231

Please sign in to comment.