Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove charged certus obtaining info panel #6637

Merged
merged 1 commit into from
Sep 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/main/java/appeng/core/localization/GuiText.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ public enum GuiText implements LocalizationEnum {
CertusQuartzObtain(
"Certus Quartz is grown by the various Budding Certus Quartz blocks, which can be found in meteors, or crafted from regular Certus Quartz blocks."),
ChannelEnergyDrain("Channel Passive Drain: %s"),
ChargedQuartz(
"Charged Certus Quartz is crafted by inserting an uncharged Certus Quartz Crystal into the Charger, and powering it."),
Chest("ME Chest"),
Clean("Clean"),
CompatibleUpgrade("%s (%s)"),
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/appeng/integration/modules/jei/JEIPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,6 @@ public void registerRecipeCatalysts(IRecipeCatalystRegistration registration) {
}

private void registerDescriptions(IRecipeRegistration registry) {
this.addDescription(registry, AEItems.CERTUS_QUARTZ_CRYSTAL_CHARGED, GuiText.ChargedQuartz.text());

this.addDescription(registry, AEItems.LOGIC_PROCESSOR_PRESS,
GuiText.inWorldCraftingPresses.text());
this.addDescription(registry, AEItems.CALCULATION_PROCESSOR_PRESS,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,6 @@ private void registerDescriptions(DisplayRegistry registry) {
}

addDescription(registry, AEItems.CERTUS_QUARTZ_CRYSTAL, GuiText.CertusQuartzObtain.getTranslationKey());
addDescription(registry, AEItems.CERTUS_QUARTZ_CRYSTAL_CHARGED, GuiText.ChargedQuartz.getTranslationKey());

if (AEConfig.instance().isSpawnPressesInMeteoritesEnabled()) {
addDescription(registry, AEItems.LOGIC_PROCESSOR_PRESS, GuiText.inWorldCraftingPresses.getTranslationKey());
Expand Down