Skip to content

Commit

Permalink
Reduce default EMC Values for matter balls and singularities
Browse files Browse the repository at this point in the history
(By now these can be obtained quite easily on certain modpacks, so they may be too easy of an EMC source)
  • Loading branch information
62832 committed Apr 30, 2024
1 parent 67b939c commit 7a83121
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/gripe/_90/appliede/AppliedE.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@
import moze_intel.projecte.api.nss.NSSItem;
import moze_intel.projecte.emc.mappers.APICustomEMCMapper;

// spotless:off
@Mod(AppliedE.MODID)
public final class AppliedE {
public static final String MODID = "appliede";
public static final BigInteger TIER_LIMIT = BigInteger.valueOf((long) Math.pow(2, 42));

// spotless:off
private static final DeferredRegister<Item> ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, MODID);
private static final DeferredRegister<Block> BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, MODID);
private static final DeferredRegister<BlockEntityType<?>> BE_TYPES = DeferredRegister.create(ForgeRegistries.BLOCK_ENTITY_TYPES, MODID);
Expand Down Expand Up @@ -97,7 +97,6 @@ public final class AppliedE {
})
.build());
}
// spotless:on

private static boolean mappedAEItems;

Expand Down Expand Up @@ -128,8 +127,8 @@ public static boolean useCustomMapper() {
if (!mappedAEItems) {
registerEMC(AEItems.CERTUS_QUARTZ_CRYSTAL, 256);
registerEMC(AEBlocks.SKY_STONE_BLOCK, 256);
registerEMC(AEItems.MATTER_BALL, 2048);
registerEMC(AEItems.SINGULARITY, 2048000);
registerEMC(AEItems.MATTER_BALL, 512);
registerEMC(AEItems.SINGULARITY, 512000);
registerEMC(AEItems.QUANTUM_ENTANGLED_SINGULARITY, 0);
mappedAEItems = true;
}
Expand All @@ -146,3 +145,4 @@ private static <P extends IPart> Item part(Class<P> partClass, Function<IPartIte
return new PartItem<>(new Item.Properties(), partClass, factory);
}
}
// spotless:on

0 comments on commit 7a83121

Please sign in to comment.