Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Travellers Gear Removal - Should only be merged when the mod is removed #1115

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import com.dreammaster.coremod.transformers.recipenukers.AdvancedSolarPanelTransformer;
import com.dreammaster.coremod.transformers.recipenukers.BibliocraftTransformer;
import com.dreammaster.coremod.transformers.recipenukers.GraviSuiteTransformer;
import com.dreammaster.coremod.transformers.recipenukers.TravellersGearTransformer;

public class DreamClassTransformer implements IClassTransformer {

Expand All @@ -27,7 +26,6 @@ public DreamClassTransformer() {
registerTransformer(new BibliocraftTransformer());
registerTransformer(new GraviSuiteTransformer());
registerTransformer(new ItemFocusWardingTransformer());
registerTransformer(new TravellersGearTransformer());
}

private void registerTransformer(IDreamTransformer transformer) {
Expand Down

This file was deleted.

1 change: 0 additions & 1 deletion src/main/java/com/dreammaster/scripts/ScriptLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ public static void run() {
new ScriptTinkersConstruct(),
new ScriptTinkersDefence(),
new ScriptTranslocator(),
new ScriptTravellersGear(),
new ScriptTwilightForest(),
new ScriptWarpTheory(),
new ScriptWirelessRedstone(),
Expand Down
105 changes: 0 additions & 105 deletions src/main/java/com/dreammaster/scripts/ScriptTravellersGear.java

This file was deleted.

2 changes: 1 addition & 1 deletion src/main/resources/assets/dreamcraft/lang/en_US.lang
Original file line number Diff line number Diff line change
Expand Up @@ -1407,7 +1407,7 @@ tc.research_text.TalismanfoodtGTNH=Everfull belly
tc.research_page.TalismanfoodtGTNH=You often find yourself needing to take breaks during marathon researching sessions to satisfy your hunger. Finally you have found a way to get past your need for food.<BR><BR>By infusing a diamond with the essence of hunger, you have created an item that is able to suck the nourishing energy from various food items in your hotbar and store this energy within. It will then automatically replenish your food meter if it is depleted.<BR><BR>This device will only work on simple food items, so foods that invoke effects such as Rotten Flesh and Golden Apples must be consumed normally.
tc.research_name.DreamcatcherGTNH=Wispy Dreamcatcher
tc.research_text.DreamcatcherGTNH=Filtered thoughts
tc.research_name.CrucsoulGTNH=Crucible of Soulst
tc.research_name.CrucsoulGTNH=Crucible of Souls
tc.research_text.CrucsoulGTNH=Caution: Keep out of reach of children.
tc.research_name.ROD_TRANSMUTATION=Transmutative Wand Core
tc.research_text.ROD_TRANSMUTATION=One thing into another
Expand Down