Skip to content

Commit

Permalink
Fix malformed biome namespaces (#16)
Browse files Browse the repository at this point in the history
Co-authored-by: iam <iam4722202468@users.noreply.github.com>
  • Loading branch information
Am-Gone and iam4722202468 authored Feb 9, 2024
1 parent 5ff405e commit a3abc16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public JsonObject generate() throws Exception {
biomeJson.add("skyColor", effects.get("sky_color"));
biomeJson.add("foliageColor", effects.get("foliage_color"));
biomeJson.add("grassColor", effects.get("grass_color"));
biomesJson.add("minecraft:" + entry.getKey(), biomeJson);
biomesJson.add(entry.getKey(), biomeJson);
}

return biomesJson;
Expand Down

0 comments on commit a3abc16

Please sign in to comment.