Skip to content

Commit

Permalink
Rename Source Acceptor to Source Converter
Browse files Browse the repository at this point in the history
  • Loading branch information
62832 committed Nov 6, 2023
1 parent f43b5c5 commit 4d00e57
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/data/java/gripe/_90/arseng/data/LocalisationProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ protected void addTranslations() {
"ME Source Cells can be crafted with an ME Source Cell Housing. They will store many jars' worth of source.");
add(
"arseng.page.source_acceptor",
"The ME Source Acceptor converts source into AE energy. Attach to an ME network and feed it source with a relay.");
add("arseng.page.source_acceptor_description", "The Source Acceptor comes in both block and cable part form.");
"The ME Source Converter converts source into AE energy. Attach to an ME network and feed it source with a relay.");
add("arseng.page.source_acceptor_description", "The Source Converter comes in both block and cable part form.");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public static void register(RegisterEvent event) {
}

public static final BlockDefinition<SourceAcceptorBlock> SOURCE_ACCEPTOR =
block("ME Source Acceptor", "source_acceptor", SourceAcceptorBlock::new);
block("ME Source Converter", "source_acceptor", SourceAcceptorBlock::new);

public static final BlockEntityType<SourceAcceptorBlockEntity> SOURCE_ACCEPTOR_ENTITY = blockEntity(
"source_acceptor", SourceAcceptorBlockEntity.class, SourceAcceptorBlockEntity::new, SOURCE_ACCEPTOR);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

public class SourceRenderer implements AEKeyRenderHandler<SourceKey> {
public static final SourceRenderer INSTANCE = new SourceRenderer();
public static final Material SOURCE =
private static final Material SOURCE =
new Material(InventoryMenu.BLOCK_ATLAS, new ResourceLocation("ars_nouveau", "block/mana_still"));

private SourceRenderer() {}
Expand Down

0 comments on commit 4d00e57

Please sign in to comment.