Skip to content

Commit

Permalink
fix: Basalt gen is never loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
null2264 committed Jun 21, 2024
1 parent 05b69d4 commit f133b11
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@ public static ConfigData fromJson(JsonObject json) {
*/
config.cobbleGen = ResultList.fromJson(json.get("cobbleGen"));
config.stoneGen = ResultList.fromJson(json.get("stoneGen"));
config.stoneGen = ResultList.fromJson(json.get("stoneGen"));
config.basaltGen = ResultList.fromJson(json.get("basaltGen"));
config.customGen = CustomGen.fromJson(json.getObject("customGen"));
config.advanced = FluidInteractionMap.fromJson(json.getObject("advanced"));
return config;
}
}
}

0 comments on commit f133b11

Please sign in to comment.