Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
fixed an end vien also spawning in the overworld, added more ores for…
Browse files Browse the repository at this point in the history
… tfc
  • Loading branch information
Trinsdar committed Sep 10, 2023
1 parent 882e5aa commit 71a5d25
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AntimatterAPI
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private static void initOreVeins(WorldGenEvent ev) {
OVERWORLD, Level.NETHER, Level.END).buildVein());
ev.vein(new WorldGenVeinLayerBuilder("platinum").asOreVein(-24, -9, 5, 3, 16, Cooperite, Palladium, Platinum, Iridium,
OVERWORLD).buildVein());
ev.vein(new WorldGenVeinLayerBuilder("platinum_end").asOreVein(40, 50, 5, 3, 16, Cooperite, Palladium, Platinum, Iridium, OVERWORLD,
ev.vein(new WorldGenVeinLayerBuilder("platinum_end").asOreVein(40, 50, 5, 3, 16, Cooperite, Palladium, Platinum, Iridium,
Level.END).buildVein());
ev.vein(new WorldGenVeinLayerBuilder("pitchblend").asOreVein(-54, -9, 40, 3, 16, Pitchblende, Pitchblende, Uraninite, Uraninite,
OVERWORLD).buildVein());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import java.util.function.BiConsumer;

import static muramasa.antimatter.data.AntimatterDefaultTools.SAW;
import static muramasa.gregtech.data.Materials.*;

public class TFCRegistrar implements IAntimatterRegistrar {

Expand All @@ -47,7 +48,7 @@ public String getId() {
@Override
public void onRegistrationEvent(RegistrationEvent event, Side side) {
if (event == RegistrationEvent.DATA_INIT){
array = new Material[]{Materials.Bauxite, Materials.Cobaltite, Materials.Galena, Materials.Uraninite};
array = new Material[]{Bauxite, Cobaltite, Galena, Uraninite, VanadiumMagnetite, BrownLimonite, BandedIron, Cooperite, Palladium};
for (Material material : array) {
Helpers.mapOfKeys(Ore.Grade.class, (grade) -> {
new GTTFCOreItem(GTIRef.ID, grade.name().toLowerCase() + "_" + material.getId());
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fabric_api_version=0.76.0+1.18.2
fabric_transfer_api_version=1.6.+
fabric_loader_version=0.14.6

gt_rubber_version=0.2.3-rc4
gt_rubber_version=0.2.3-rc5
gt_utility_version=0.1-pre13
terraform_version=3.1.4
networkapi_version=0.1.1-rc2
Expand Down

0 comments on commit 71a5d25

Please sign in to comment.