Skip to content

Commit

Permalink
Parse config val maxPhotovoltaicVibrantOutputRF (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pilzinsel64 authored Feb 3, 2023
1 parent e9f9412 commit 0966121
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main/java/crazypants/enderio/config/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -800,6 +800,13 @@ public static void processConfig(Configuration config) {
maxPhotovoltaicAdvancedOutputRF,
"Maximum output in RF/t of the Advanced Photovoltaic Panels.")
.getInt(maxPhotovoltaicAdvancedOutputRF);
maxPhotovoltaicVibrantOutputRF = config
.get(
sectionPower.name,
"maxPhotovoltaicVibrantOutputRF",
maxPhotovoltaicVibrantOutputRF,
"Maximum output in RF/t of the Vibrant Photovoltaic Panels.")
.getInt(maxPhotovoltaicVibrantOutputRF);

useAlternateBinderRecipe = config
.get(
Expand Down

0 comments on commit 0966121

Please sign in to comment.