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

Commit

Permalink
updated deps, removed amethyst shards from amethyst gem tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Sep 3, 2023
1 parent 64e30ee commit 979b783
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 4 deletions.
1 change: 1 addition & 0 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ dependencies{
implementation("com.github.FeltMC:forgeconfigapiport-fabric:c1486f80f7"){
transitive = false
}
modCompileOnly("curse.maven:terrafirmacraft-302973:4723717")
}

architectury {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ protected void processTags(String domain) {
this.tag(TRANSISTORS).add(Transistor, SMDTransistor);
this.tag(DIODES).add(Diode, SMDDiode);
this.tag(GEM.getMaterialTag(Amethyst)).remove(Items.AMETHYST_SHARD);
this.tag(GEM.getTag()).remove(Items.AMETHYST_SHARD);
this.tag(BLOCK.getMaterialTag(Amethyst)).remove(Items.AMETHYST_BLOCK);
this.tag(GEM.getMaterialTag(Quartz)).add(GEM.get(MilkyQuartz));
this.tag(PLATES_IRON_ALUMINIUM).addTag(PLATE.getMaterialTag(Iron)).addTag(PLATE.getMaterialTag(WroughtIron)).addTag(PLATE.getMaterialTag(Aluminium));
this.tag(DUST_LAPIS_LAZURITE).addTag(DUST.getMaterialTag(Lapis)).addTag(DUST.getMaterialTag(Lazurite));
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package muramasa.gregtech.integration.tfc;

import muramasa.antimatter.AntimatterAPI;
import muramasa.antimatter.Ref;
import muramasa.antimatter.registration.IAntimatterRegistrar;
import muramasa.antimatter.registration.RegistrationEvent;
import muramasa.antimatter.registration.Side;

public class TFCRegistrar implements IAntimatterRegistrar {
@Override
public String getId() {
return "tfc";
}

@Override
public void onRegistrationEvent(RegistrationEvent event, Side side) {

}

@Override
public void onRegistrarInit() {

}

@Override
public boolean isEnabled() {
return AntimatterAPI.isModLoaded("tfc");
}
}
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx5G
org.gradle.daemon=false
org.gradle.parallel=true

mod_version=0.2-alpha-47
mod_version=0.2-alpha-51
archive_base_name=gti
modid=gregtech

Expand All @@ -15,8 +15,8 @@ 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-rc3
gt_utility_version=0.1-pre12
gt_rubber_version=0.2.3-rc4
gt_utility_version=0.1-pre13
terraform_version=3.1.4
networkapi_version=0.1.1-rc2
jei_version=10.2.1.1004
Expand Down

0 comments on commit 979b783

Please sign in to comment.