-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove Utilitarian recipes from modes when they would overshadow GT's harder recipes * Ensure that Sand->Dust->Clay is available for all pack modes, both by hand and in machines * More Utilitarian utility recipes to remove * Get rid of duplicate firebrick recipe removals * Add Rubber Ingot recipe without Extractor to match Rubber Plate recipe in NM * Update normal_mode.js --------- Co-authored-by: Pansmith <70342772+ThePansmith@users.noreply.github.com>
- Loading branch information
1 parent
3d5835a
commit bb8ca38
Showing
6 changed files
with
38 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
ServerEvents.recipes(event => { | ||
//Remove No Soliciting Carpets | ||
event.remove({ id: /utilitarian:.*_soliciting_carpet/ }) | ||
|
||
//Remove snad & variants | ||
event.remove({ output: ['utilitarian:snad', 'utilitarian:red_snad', 'utilitarian:soul_snad', 'utilitarian:fluid_hopper', 'utilitarian:no_soliciting_banner']}) | ||
|
||
//Remove utility recipes when they overshadow GT recipes | ||
event.remove({ id: 'utilitarian:utility/logs_to_hopper'}) | ||
if(isHardMode) { | ||
event.remove({ id: 'utilitarian:utility/charcoal_from_campfire'}) | ||
} | ||
if(isHarderMode) { | ||
event.remove({ id: 'utilitarian:utility/logs_to_ladders'}) | ||
event.remove({ id: 'utilitarian:utility/logs_to_chests'}) | ||
event.remove({ id: 'utilitarian:utility/logs_to_sticks'}) | ||
event.remove({ id: 'utilitarian:utility/logs_to_bowls'}) | ||
event.remove({ id: /utilitarian:.*_logs_to_.*/}) | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters