Skip to content

Commit

Permalink
1.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
DonovanDMC committed Apr 2, 2022
1 parent 0a13d32 commit b872bad
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.daemon=false

cfProjectID = 579177
mcVersion = 1.16.5
localVersion = 1.0.15-dev.20220330
localVersion = 1.0.15
mappingsVersion = 20210309
forgeVersion = 36.2.23
# 1.16.5-PE1.0.1B
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public class TileEntityTypes {
public static final DeferredRegister<TileEntityType<?>> Registry = DeferredRegister.create(ForgeRegistries.TILE_ENTITIES, Main.MOD_ID);

public static final RegistryObject<TileEntityType<TileEMCLink>> emc_link = Registry.register("emc_link", () -> TileEntityType.Builder.create(TileEMCLink::new, Blocks.EMC_LINK.get()).build(null));
public static final RegistryObject<TileEntityType<TileEMCLink>> EMC_LINK = Registry.register("emc_link", () -> TileEntityType.Builder.create(TileEMCLink::new, Blocks.EMC_LINK.get()).build(null));
public static final RegistryObject<TileEntityType<TilePowerFlower>> POWER_FLOWER = Registry.register("power_flower", () -> TileEntityType.Builder.create(TilePowerFlower::new, Arrays.stream(Matter.VALUES).map(Matter::getPowerFlower).toArray(Block[]::new)).build(null));
public static final RegistryObject<TileEntityType<TileCollector>> ENERGY_COLLECTOR = Registry.register("collector", () -> TileEntityType.Builder.create(TileCollector::new, Arrays.stream(Matter.VALUES).map(Matter::getCollector).toArray(Block[]::new)).build(null));
public static final RegistryObject<TileEntityType<TileRelay>> ANTI_MATTER_RELAY = Registry.register("relay", () -> TileEntityType.Builder.create(TileRelay::new, Arrays.stream(Matter.VALUES).map(Matter::getRelay).toArray(Block[]::new)).build(null));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class TileEMCLink extends TileEntity implements ITickableTileEntity, IEmc
private LazyOptional<IEmcStorage> emcStorageCapability;

public TileEMCLink() {
super(TileEntityTypes.emc_link.get());
super(TileEntityTypes.EMC_LINK.get());
}

@Override
Expand Down
7 changes: 4 additions & 3 deletions updates.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
"1.16.5-1.0.11": "https://github.com/DonovanDMC/ProjectExpansion/releases/tag/1.16.5-1.0.11",
"1.16.5-1.0.12": "https://github.com/DonovanDMC/ProjectExpansion/releases/tag/1.16.5-1.0.12",
"1.16.5-1.0.13": "https://github.com/DonovanDMC/ProjectExpansion/releases/tag/1.16.5-1.0.13",
"1.16.5-1.0.14": "https://github.com/DonovanDMC/ProjectExpansion/releases/tag/1.16.5-1.0.14"
"1.16.5-1.0.14": "https://github.com/DonovanDMC/ProjectExpansion/releases/tag/1.16.5-1.0.14",
"1.16.5-1.0.15": "https://github.com/DonovanDMC/ProjectExpansion/releases/tag/1.16.5-1.0.15"
},
"promos": {
"1.16.5-latest": "1.16.5-1.0.14",
"1.16.5-recommended": "1.16.5-1.0.14"
"1.16.5-latest": "1.16.5-1.0.15",
"1.16.5-recommended": "1.16.5-1.0.15"
}
}

0 comments on commit b872bad

Please sign in to comment.