Skip to content
Open
Changes from all commits
Commits
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 @@ -44,8 +44,11 @@ public class GTRecipeModifiers {
}
return logic.getModifier(machine, recipe, overclockMachine.getOverclockVoltage());
});

// Shortcuts for common OC logics
/*
Shortcuts for common OC logics
One of these modifiers must be present within .recipeModifiers() to enable normal overclocking
otherwise, the time discount will not be applied, regardless of the eu/t supplied
*/
public static final RecipeModifier OC_PERFECT = ELECTRIC_OVERCLOCK.apply(PERFECT_OVERCLOCK);
public static final RecipeModifier OC_NON_PERFECT = ELECTRIC_OVERCLOCK.apply(NON_PERFECT_OVERCLOCK);
public static final RecipeModifier OC_PERFECT_SUBTICK = ELECTRIC_OVERCLOCK.apply(PERFECT_OVERCLOCK_SUBTICK);
Expand Down
Loading